Skip to content

Commit e0dc562

Browse files
committed
ci: auto release notes
1 parent 96b0520 commit e0dc562

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/release-notes.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Create release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
7+
8+
jobs:
9+
build:
10+
name: Create Release
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@master
15+
with:
16+
fetch-depth: 0 # Fetch all tags
17+
18+
- name: Create Release for Tag
19+
id: release_tag
20+
uses: Akryum/release-tag@conventional
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
with:
24+
tag_name: ${{ github.ref }}
25+
preset: angular # Use conventional-changelog preset

0 commit comments

Comments
 (0)