Skip to content

Commit

Permalink
Use labels for changelog generating (#4198)
Browse files Browse the repository at this point in the history
  • Loading branch information
luin committed May 13, 2024
1 parent 1fd5c94 commit 999d607
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
changelog:
exclude:
authors:
- quill-bot
categories:
- title: Bug Fixes 🛠
labels:
- change:bugfix
- title: New Features 🎉
labels:
- change:feature
- title: Documentation 📚
labels:
- change:documentation
- title: Other Changes
labels:
- "*"
23 changes: 23 additions & 0 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Pull Requests

on:
pull_request:
types: [opened, labeled, unlabeled, synchronize]

jobs:
label:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: mheap/github-action-required-labels@v5
with:
mode: exactly
count: 1
labels: |
change:bugfix
change:feature
change:documentation
change:chore
add_comment: false

0 comments on commit 999d607

Please sign in to comment.