Skip to content

Commit

Permalink
Fix release drafter autolabeler and exclude-labels.
Browse files Browse the repository at this point in the history
Updates the release drafter configuration file changing the label used
to exclude a PR from the change log to `release/skip-changelog`.

Adds a new entry in the autolabel configuration to set the label
`area/dependencies` when the PR title starts with `build(deps)`

Signed-off-by: José Guilherme Vanz <[email protected]>
  • Loading branch information
jvanz committed Jan 18, 2023
1 parent 71a01e1 commit d497247
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ exclude-labels:
- later
- wontfix
- kind/question
- skip-changelog
- release/skip-changelog

change-template: '- $TITLE (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
Expand All @@ -40,6 +40,8 @@ autolabeler:
title: 'fix'
- label: 'kind/chore'
title: 'chore'
- label: 'area/dependencies'
title: 'build(deps)'

version-resolver:
major:
Expand Down

0 comments on commit d497247

Please sign in to comment.