Release-Notes-Preview
ActionsPresents a preview of expected release notes should the PR get merged, based on Semantic Release
v1.4.0
By snyk
Verified creator
Tags
(2)Verified
GitHub Action to provide preview of expected release notes based on Semantic Release. The preview would be posted on every pull request opened against the desired branch(es).
An authentication token for GitHub, used for posting the preview of the release notes.
- Generate a GitHub token with sufficient write access to the repository. Privileges depend on whether the project is open sourced or not.
- Add the GitHub token as a secret to the repository, named
RELEASE_NOTES_GITHUB_TOKEN
. - Create a file with the following content under
.github/workflows/release-notes.yaml
:
name: Release-Notes-Preview
on:
pull_request:
branches: [ master ]
jobs:
preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
git fetch --prune --unshallow --tags
- uses: snyk/[email protected]
with:
releaseBranch: master
env:
GITHUB_PR_USERNAME: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.RELEASE_NOTES_GITHUB_TOKEN }}
Release-Notes-Preview is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.