ci(generate-changelogs): set dry_run as true (#201)

* ci(generate-changelogs): set dry_run as true

* patch: set dry_run to true by default
This commit is contained in:
Kevin Yu 2023-07-11 23:28:45 +08:00 committed by GitHub
parent d6f6725d43
commit ceab2edd00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ on:
future_release_tag:
required: true
description: future release tag
write_to_issue:
dry_run:
required: true
description: export changelogs to an issue page
default: true
@ -39,7 +39,7 @@ jobs:
echo "${{ steps.changelog.outputs.changelogs }}"
- name: Create an issue with proposed changelogs
if: ${{ inputs.write_to_issue == 'true' }}
if: ${{ inputs.dry_run == 'false' }}
uses: dacbd/create-issue-action@main
with:
token: ${{ secrets.GH_TOKEN }}