Skip to content

Commit eef7635

Browse files
authored
Use release drafter 7 (#94)
Adapt to release drafter v7 configuration change Release drafter v7 dropped support for `_extends: .github` in the configuration. It either needs to be removed or replaced with a more complete specification like: `_extends: github:jenkinsci/.github:/.github/release-drafter.yml` Testing done * None. Has worked well in many repositories, not expecting any issues in this repository
1 parent 5b98144 commit eef7635

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/release-drafter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_extends: .github
1+
_extends: github:jenkinsci/.github:/.github/release-drafter.yml
22
name-template: $NEXT_PATCH_VERSION
33
tag-template: robot-$NEXT_VERSION_VERSION
44
version-template: $MAJOR.$MINOR.$PATCH
@@ -15,4 +15,4 @@ categories:
1515
- title: '🧰 Maintenance'
1616
label: 'maintenance'
1717
exclude-labels:
18-
- 'skip-changelog'
18+
- 'skip-changelog'

.github/workflows/release-drafter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
# Drafts your next Release notes as Pull Requests are merged into the default branch
15-
- uses: release-drafter/release-drafter@v5
16-
env:
17-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
- uses: release-drafter/release-drafter@v7
16+
with:
17+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)