File tree Expand file tree Collapse file tree 4 files changed +53
-0
lines changed
Expand file tree Collapse file tree 4 files changed +53
-0
lines changed Original file line number Diff line number Diff line change 1+ feature : ['feature/*', 'feat/*']
2+ enhancement : enhancement/*
3+ bug : fix/*
4+ breaking : breaking/*
5+ documentation : doc/*
Original file line number Diff line number Diff line change 1+ name-template : ' v$NEXT_PATCH_VERSION'
2+ tag-template : ' v$NEXT_PATCH_VERSION'
3+ exclude-labels :
4+ - ' Meta: Exclude From Changelog'
5+ - ' auto-changelog'
6+ categories :
7+ - title : ' ⚠️ Breaking changes'
8+ label : ' breaking'
9+ - title : ' 🚀 Features'
10+ label : ' feature'
11+ - title : ' ✨ Enhancement'
12+ label : ' enhancement'
13+ - title : ' 📘 Documentation'
14+ label : ' documentation'
15+ - title : ' 🐛 Bug Fixes'
16+ label : ' bug'
17+ template : |
18+ ## What's changed
19+ $CHANGES
20+ ## Contributors to this release
21+ $CONTRIBUTORS
Original file line number Diff line number Diff line change 1+ name : PR Labeler
2+ on :
3+ pull_request :
4+ types : [opened]
5+
6+ jobs :
7+ pr-labeler :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : TimonVS/pr-labeler-action@v3
11+ env :
12+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ name : Release Drafter
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+
8+ jobs :
9+ update_release_draft :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Update release draft
13+ uses : release-drafter/release-drafter@v5
14+ env :
15+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments