Skip to content

Commit

Permalink
ci: update release tag handling in labeler.yml and release.yml (#45)
Browse files Browse the repository at this point in the history
* ci: update release tag handling in labeler.yml and release.yml

* fix: typo in labeler.yml
  • Loading branch information
lumirlumir authored Aug 27, 2024
1 parent a123805 commit 0158006
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
30 changes: 17 additions & 13 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,53 +11,57 @@ comments:
labels:
'build':
include:
- '^build\b'
- '\bbuild\b'
exclude: []
'chore':
include:
- '^chore\b'
- '\bchore\b'
exclude: []
'ci':
include:
- '^ci\b'
- '\bci\b'
exclude: []
'design':
include:
- '^design\b'
- '\bdesign\b'
exclude: []
'docs':
include:
- '^docs\b'
- '\bdocs\b'
exclude: []
'feat':
include:
- '^feat\b'
- '\bfeat\b'
exclude: []
'fix':
include:
- '^fix\b'
- '\bfix\b'
exclude: []
'perf':
include:
- '^perf\b'
- '\bperf\b'
exclude: []
'refactor':
include:
- '^refactor\b'
- '\brefactor\b'
exclude: []
'remove':
include:
- '^remove\b'
- '\bremove\b'
exclude: []
'rename':
include:
- '^rename\b'
- '\brename\b'
exclude: []
'style':
include:
- '^style\b'
- '\bstyle\b'
exclude: []
'test':
include:
- '^test\b'
- '\btest\b'
exclude: []
'release':
include:
- '\brelease\b'
exclude: []
4 changes: 4 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuration-options

changelog:
exclude:
labels:
- release

categories:
- title: 🚀 Features
labels:
Expand Down

0 comments on commit 0158006

Please sign in to comment.