Skip to content

Commit b2dc081

Browse files
authored
Merge pull request #241 from botblock/master
Synchronize development with master
2 parents 517e7ad + 88ea0f9 commit b2dc081

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

.github/release-drafter.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name-template: "v$RESOLVED_VERSION: "
2+
tag-template: "$RESOLVED_VERSION"
3+
prerelease: false
4+
publish: false
5+
exclude-labels:
6+
- "Action: No Changelog"
7+
8+
categories:
9+
- title: "🚀 Features"
10+
labels:
11+
- "Type: Enhancement"
12+
- title: "🐛 Bug fixes"
13+
labels:
14+
- "Type: Bug (Confirmed)"
15+
- title: "🔧 Dependencies"
16+
labels:
17+
- "Type: Dependency update"
18+
change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
19+
version-resolver:
20+
major:
21+
labels:
22+
- "Action: Update Major"
23+
minor:
24+
labels:
25+
- "Action: Update Minor"
26+
patch:
27+
labels:
28+
- "Action: Update Patch"
29+
default: patch
30+
template: |
31+
## Release Notes
32+
$CHANGES

.github/workflows/release_drafter.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
name: Release notes
3+
4+
on:
5+
# push:
6+
# branches: [ main ]
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
update_release_draft:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: release-drafter/release-drafter@v5
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)