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 55 tags :
66 - ' *.*.*'
77jobs :
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}"
830 build :
931 runs-on : ubuntu-latest
1032 strategy :
Original file line number Diff line number Diff line change 22
33Observes [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) standard and [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) convention.
44
5- ## [ 0.1.0a3 ] - 2021-04-23
5+ ## [ Unreleased ]
66### Added
77+ Added GitHub Action release process
88
You can’t perform that action at this time.
0 commit comments