Update release notes config and add CI check

This commit is contained in:
Jesse Duffield 2023-07-20 17:10:47 +10:00
parent effda8291b
commit 1af6dff64e
2 changed files with 10 additions and 2 deletions

4
.github/release.yml vendored
View file

@ -8,10 +8,10 @@ changelog:
- feature - feature
- title: Enhancements 🔥 - title: Enhancements 🔥
labels: labels:
- improvement - enhancement
- title: Fixes 🔧 - title: Fixes 🔧
labels: labels:
- bugfix - bug
- title: Maintenance ⚙️ - title: Maintenance ⚙️
labels: labels:
- maintenance - maintenance

View file

@ -204,3 +204,11 @@ jobs:
- name: errors - name: errors
run: golangci-lint run run: golangci-lint run
if: ${{ failure() }} if: ${{ failure() }}
check-required-label:
runs-on: ubuntu-latest
steps:
- uses: mheap/github-action-required-labels@v5
with:
mode: exactly
count: 1
labels: "ignore-for-release, feature, enhancement, maintenance, docs, i18n"