File tree Expand file tree Collapse file tree 5 files changed +90
-0
lines changed Expand file tree Collapse file tree 5 files changed +90
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ version: 2
2
2
updates :
3
3
- package-ecosystem : github-actions
4
4
directory : /
5
+ labels :
6
+ - " maintenance"
5
7
schedule :
6
8
interval : weekly
7
9
groups :
@@ -12,6 +14,8 @@ updates:
12
14
13
15
- package-ecosystem : npm
14
16
directory : /
17
+ labels :
18
+ - " maintenance"
15
19
schedule :
16
20
interval : weekly
17
21
groups :
Original file line number Diff line number Diff line change
1
+ # Configuration for GitHub Actions labeler v5
2
+ # See: https://github.com/actions/labeler
3
+
4
+ documentation :
5
+ - changed-files :
6
+ - any-glob-to-any-file : ["**/*.md"]
7
+
8
+ maintenance :
9
+ - changed-files :
10
+ - any-glob-to-any-file :
11
+ [".github/**/*", "package.json", "package-lock.json"]
12
+
13
+ enhancement :
14
+ - changed-files :
15
+ - any-glob-to-any-file : ["src/**/*", "dist/**/*", "action.yml"]
Original file line number Diff line number Diff line change
1
+ name-template : " v$RESOLVED_VERSION"
2
+ tag-template : " v$RESOLVED_VERSION"
3
+ categories :
4
+ - title : " 🚀 Features and Improvements"
5
+ labels :
6
+ - " enhancement"
7
+ - title : " 🐛 Bug Fixes"
8
+ labels :
9
+ - " bug"
10
+ - title : " 🧰 Maintenance"
11
+ labels :
12
+ - " maintenance"
13
+ - title : " 📚 Documentation"
14
+ labels :
15
+ - " documentation"
16
+ change-template : " - $TITLE (#$NUMBER)"
17
+ version-resolver :
18
+ major :
19
+ labels :
20
+ - " bump-major"
21
+ - " breaking"
22
+ minor :
23
+ labels :
24
+ - " bump-minor"
25
+ - " enhancement"
26
+ default : patch
27
+ template : |
28
+ ## What's Changed
29
+ $CHANGES
30
+
31
+ exclude-labels :
32
+ - " skip-release-notes"
Original file line number Diff line number Diff line change
1
+ name : Pull Request Labeler
2
+ on :
3
+ pull_request_target :
4
+ types : [opened, synchronize, reopened]
5
+
6
+ jobs :
7
+ label :
8
+ runs-on : ubuntu-latest
9
+ permissions :
10
+ contents : read
11
+ pull-requests : write
12
+ steps :
13
+ - uses : actions/labeler@v5
14
+ with :
15
+ repo-token : " ${{ secrets.GITHUB_TOKEN }}"
16
+ sync-labels : true
Original file line number Diff line number Diff line change
1
+ name : Release Drafter
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ workflow_dispatch :
8
+
9
+ permissions :
10
+ contents : write # to create a github release
11
+ pull-requests : read
12
+
13
+ jobs :
14
+ update_release_draft :
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - name : Checkout
18
+ uses : actions/checkout@v4
19
+
20
+ - name : Update Release Draft
21
+ uses : release-drafter/release-drafter@v6
22
+ env :
23
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments