File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # yaml-language-server: $schema=https://gabe565.github.io/changelog-generator/config.schema.json
2+ filters :
3+ exclude :
4+ - " ^docs"
5+ - " ^test"
6+ groups :
7+ - title : Features
8+ order : 0
9+ regexp : " ^(feat)"
10+ - title : Dependencies
11+ order : 3
12+ regexp : " \\ (deps\\ ):"
13+ - title : Fixes
14+ order : 1
15+ regexp : " ^(fix|perf)"
16+ - title : Others
17+ order : 2
Original file line number Diff line number Diff line change 8282 with :
8383 name : dist
8484 path : dist
85+
86+ release :
87+ name : Release
88+ if : startsWith(github.ref, 'refs/tags/')
89+ needs : [lint, build-docker, build]
90+ runs-on : ubuntu-24.04
91+ steps :
92+ - name : Checkout
93+ uses : actions/checkout@v4
94+ with :
95+ fetch-depth : 0
96+ - name : Generate Changelog
97+ id : changelog
98+ uses : gabe565/changelog-generator@v1
99+ - name : Release
100+ uses : softprops/action-gh-release@v2
101+ with :
102+ body : ${{ steps.changelog.outputs.changelog }}
You can’t perform that action at this time.
0 commit comments