File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 5
5
tags :
6
6
- ' *.*.*'
7
7
jobs :
8
+ test-changelog :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ - name : Get changelog entry
13
+ id : changelog_reader
14
+ uses : guzman-raphael/changelog-reader-action@v5
15
+ with :
16
+ path : ./CHANGELOG.md
17
+ - name : Verify changelog parsing
18
+ env :
19
+ TAG_NAME : ${{steps.changelog_reader.outputs.version}}
20
+ RELEASE_NAME : Release ${{steps.changelog_reader.outputs.version}}
21
+ BODY : ${{steps.changelog_reader.outputs.changes}}
22
+ PRERELEASE : ${{steps.changelog_reader.outputs.status == 'prereleased'}}
23
+ DRAFT : ${{steps.changelog_reader.outputs.status == 'unreleased'}}
24
+ run : |
25
+ echo "TAG_NAME=${TAG_NAME}"
26
+ echo "RELEASE_NAME=${RELEASE_NAME}"
27
+ echo "BODY=${BODY}"
28
+ echo "PRERELEASE=${PRERELEASE}"
29
+ echo "DRAFT=${DRAFT}"
8
30
build :
9
31
runs-on : ubuntu-latest
10
32
strategy :
Original file line number Diff line number Diff line change 2
2
3
3
Observes [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) standard and [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) convention.
4
4
5
- ## [ 0.1.0a3 ] - 2021-04-23
5
+ ## [ Unreleased ]
6
6
### Added
7
7
+ Added GitHub Action release process
8
8
You can’t perform that action at this time.
0 commit comments