Skip to content

Commit

Permalink
chore: prioritize deps over chore (#1155)
Browse files Browse the repository at this point in the history
<!-- markdownlint-disable MD041 -->
#### What this PR does / why we need it

this makes it so that issues listing a dependency kind will be sorted
into the correct category instead of maintenance even though they are
listed as chore(deps)

#### Which issue(s) this PR fixes
<!--
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.
-->
  • Loading branch information
jakobmoellerdev authored Nov 28, 2024
1 parent b394c38 commit 592a902
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/config/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ changelog:
- 'kind/skip-release-notes'
- 'dev/wont-fix'
- 'dev/cant-reproduce'
# if an issue matches more than one category, the first one in the list will be used
# Example:
# Labels: kind/chore, kind/dependency => Category: Dependencies
categories:
- title: '‼️ Breaking Changes'
labels:
Expand All @@ -15,10 +18,10 @@ changelog:
- title: '🐛 Bug Fixes'
labels:
- 'kind/bugfix'
- title: '⬆️ Dependencies'
labels:
- 'kind/dependency'
- title: '🧰 Maintenance'
labels:
- 'kind/chore'
- 'kind/refactor'
- title: '⬆️ Dependencies'
labels:
- 'kind/dependency'

0 comments on commit 592a902

Please sign in to comment.