Skip to content

Commit

Permalink
cicd: make empty changelog on manual trigger
Browse files Browse the repository at this point in the history
Signed-off-by: Hank Donnay <hdonnay@redhat.com>
  • Loading branch information
hdonnay committed Oct 9, 2020
1 parent 4e5ee29 commit 68c0318
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/cut-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ jobs:
- name: ChangeLog
shell: bash
run: |
if [ "${{ github.event_name }}" = workflow_dispatch ]; then
echo "workflow trigger, skipping"
touch changelog
exit 0
fi
curl -o git-chglog -L https://github.com/git-chglog/git-chglog/releases/download/0.9.1/git-chglog_linux_amd64
chmod u+x git-chglog
echo "creating change log for tag: $TAG"
Expand Down

0 comments on commit 68c0318

Please sign in to comment.