You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 10, 2021. It is now read-only.
I thought it was a comfortable action, so I tested it to try it out.
I use it as follows, but it works by including the commit message of the last release each time a new release is made.
Could you please let me know if I am using it wrong?
workflow yml code
on:
push:
branches: [ master ]
env:
VERSION: '0.3.12'
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 30
...
- name: Checkout master branch
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check changelog
uses: scottbrenner/generate-changelog-action@master
id: changelog
- name: Create Release
id: create-release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
with:
tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
body: |
${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: false
...
The text was updated successfully, but these errors were encountered:
ethznn
changed the title
steps.Changelog.outputs.changelog has the last commit message from the previous release.
steps.Changelog.outputs.changelog has the commit messages from the previous release.
Mar 11, 2021
Hello
I thought it was a comfortable action, so I tested it to try it out.
I use it as follows, but it works by including the commit message of the last release each time a new release is made.
Could you please let me know if I am using it wrong?
workflow yml code
The text was updated successfully, but these errors were encountered: