File tree Expand file tree Collapse file tree 5 files changed +97
-0
lines changed
Expand file tree Collapse file tree 5 files changed +97
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ version : 2
3+ updates :
4+ # Maintain dependencies for GitHub Actions
5+ - package-ecosystem : " github-actions"
6+ directory : " /"
7+ schedule :
8+ interval : " daily"
Original file line number Diff line number Diff line change 1+ # The labels in this file are automatically synced with the repository
2+ # using the micnncim/action-label-syncer action.
3+ ---
4+ - name : C-dependency
5+ color : 1abc9c
6+ description : " Category: Dependency"
7+ - name : PR-block
8+ color : 3498db
9+ description : " Pull Request: Do not merge"
10+ - name : PR-merge
11+ color : 3498db
12+ description : " Pull Request: Merge when ready"
Original file line number Diff line number Diff line change 1+ ---
2+ name-template : ' $RESOLVED_VERSION 🌈'
3+ tag-template : ' $RESOLVED_VERSION'
4+ version-template : ' $MAJOR.$MINOR'
5+ categories :
6+ - title : ' 🚀 Features'
7+ labels :
8+ - ' feature'
9+ - ' enhancement'
10+ - title : ' 🐛 Bug Fixes'
11+ labels :
12+ - ' fix'
13+ - ' bugfix'
14+ - ' bug'
15+ - title : ' 🧰 Maintenance'
16+ label : ' chore'
17+ change-template : ' - $TITLE @$AUTHOR (#$NUMBER)'
18+ change-title-escapes : ' \<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
19+ version-resolver :
20+ major :
21+ labels :
22+ - ' major'
23+ minor :
24+ labels :
25+ - ' minor'
26+ patch :
27+ labels :
28+ - ' patch'
29+ default : minor
30+ template : |
31+ ## Changes
32+
33+ $CHANGES
Original file line number Diff line number Diff line change 1+ ---
2+ name : Release Drafter
3+
4+ on :
5+ push :
6+ # branches to consider in the event; optional, defaults to all
7+ branches :
8+ - master
9+
10+ jobs :
11+ update_release_draft :
12+ runs-on : ubuntu-latest
13+ steps :
14+ # Drafts your next Release notes as Pull Requests are merged into "master"
15+ - uses : release-drafter/release-drafter@v5
16+ with :
17+ publish : true
18+ env :
19+ GITHUB_TOKEN : ${{ secrets.RELEASE_DRAFTER_TOKEN }}
Original file line number Diff line number Diff line change 1+ ---
2+ name : Repository
3+
4+ on :
5+ push :
6+ branches :
7+ - master
8+ paths :
9+ - .github/labels.yml
10+
11+ jobs :
12+ labels :
13+ name : Labels
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - name : Checkout code
18+ uses : actions/checkout@v3
19+
20+ - name : Sync labels
21+ uses : micnncim/action-label-syncer@v1
22+ env :
23+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24+ with :
25+ manifest : .github/labels.yml
You can’t perform that action at this time.
0 commit comments