This action generates release notes based on the closed issues.
| Key | Description | Required | Type |
|---|---|---|---|
GITHUB_TOKEN |
The github Token | TRUE | SECRET |
TAG_NAME |
The new tag name. Do not use it if you want to auto tagging | FALSE | String |
NO_CREATE_RELEASE |
If set to 'true', the action will not create a release | FALSE | String |
Create the file workflow.yml in .github/workflows folder.
name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
pull-requests: write
issues: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate release notes
uses: raulanatol/github-actions-releaser@v3.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
pull-requests: write
issues: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate release notes
uses: raulanatol/github-actions-releaser@v3.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
TAG_NAME: vTestName- [Javascript] https://github.com/raulanatol/javascript-example-gar