GitHub Action that auto-publishes release notes using a very simple-to-follow set of rules
- uses: mangs/simple-release-notes-action@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
As its name implies, this action is intended to be easy to use. Here are the rules to follow for using this action:
- When this action runs, the target version number is found in the
version
field in yourpackage.json
- Your changelog must be structured into version number "sections" as follows (use this repository's changelog as an example)
- Version numbers must always be found at the same depth (e.g. always at
### <version>
or depth of 3) - Version number "section" ordering doesn't matter
- Version numbers must always be found at the same depth (e.g. always at
# <changelog title>
## <version number> (May 30, 2077)
<any markdown can go here>
## v<another version number> The Big Release
<any markdown can go here>
etc...
- A new GitHub release will be created automatically as follows:
- Title will be the full text of the heading containing the target version number (a.k.a. the
version
field in yourpackage.json
) - Description will be the matched "section" of markdown
- Tag will be either (1) the combination of the
tag_prefix
and target version number or (2) thetag_override
value
- Title will be the full text of the heading containing the target version number (a.k.a. the
- Use with a Linux runner which is the default (this action was not tested with macOS or Windows runners, but it may function just fine)
Name | Required | Default Value | Descripition |
---|---|---|---|
changelog_path |
N | "./CHANGELOG.md" |
Path to the target changelog file |
github_token |
Y | N/A | GitHub authentication token used to authenticate on behalf of GitHub Actions |
packagejson_path |
N | "./package.json" |
Path to the target package.json file |
should_auto_update_major_tag |
N | true |
Auto-update the major tag version of your repository when a new release gets published or create it if it doesn't exist. For example, when publishing version 2.3.4, major tag v2 will get updated to HEAD. |
tag_override |
N | undefined |
String to enforce an exact tag version; overrides default behavior |
tag_prefix |
N | "v" |
Prefix to create a tag by combining this and the target version number; this is default behavior |