Skip to content

Commit

Permalink
Add change log generator for Release generator.
Browse files Browse the repository at this point in the history
  • Loading branch information
anitnilay20 committed Oct 20, 2020
1 parent eb375f1 commit f9b9db2
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,20 @@ jobs:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: heinrichreimer/[email protected]
id: change_log
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout code
uses: actions/checkout@v2
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- First Change
- Second Change
body: ${{ steps.change_log.outputs.changelog }}
draft: true
prerelease: false

0 comments on commit f9b9db2

Please sign in to comment.