Skip to content

Commit

Permalink
Updates for auto-labeler branch regex (#391)
Browse files Browse the repository at this point in the history
* Fix branch regex for "enhancement" label

* Make autolabeler branch regex case-insensitive

* Match `features/` branches to "enhancement" label
  • Loading branch information
TylerHendrickson authored Oct 13, 2023
1 parent 0c55d8f commit a33ec63
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,26 +47,26 @@ autolabeler:
- go.sum
- '**/.terraform.lock.hcl'
branch:
- '/dependabot\/.+/'
- '/^dependabot\/.+$/i'
- label: documentation
files:
- README
- '**/doc/**'
- '**/docs/**'
- '**/*.md'
branch:
- '/docs?/'
- '/^docs?\/.+$/'
- label: bug
branch:
- '/fix\/.+/'
- '/bug\/.+/'
- '/^fix\/.+$/i'
- '/^bug\/.+$/i'
title:
- '/\bfix(es)?\b/i'
- '/\bbug\b/i'
- label: enhancement
branch:
- 'feat(ure)?\/.+/'
- 'enhance(s|ment)?\/.+/'
- '/^feat(ures?)?\/.+$/i'
- '/^enhance(s|ments?)?\/.+$/i'
title:
- '/\bfeat(ure)?\b/i'
- '/\benhance(s|ment)?\b/i'
Expand Down

0 comments on commit a33ec63

Please sign in to comment.