Skip to content

Commit b2d558f

Browse files
ci(tests): Fix input for workflow_call [skip ci]
1 parent 3336b3c commit b2d558f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ jobs:
8686
body_path: CHANGELOG.txt
8787
name: ${{ env.VERSION_NUMBER }}
8888
tag_name: ${{ github.event.inputs.tag_name }}
89-
draft: ${{ github.event.inputs.draft }}
90-
prerelease: ${{ github.event.inputs.prerelease }}
89+
draft: false
90+
prerelease: false
9191

9292
test-release:
9393
name: Test release

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ jobs:
4141
with:
4242
ddev_version: ${{ matrix.ddev_version }}
4343
token: ${{ secrets.GITHUB_TOKEN }}
44-
debug_enabled: ${{ github.event.inputs.debug_enabled }}
44+
debug_enabled: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled || inputs.debug_enabled }}
4545
addon_repository: ${{ env.GITHUB_REPOSITORY }}
4646
addon_ref: ${{ env.GITHUB_REF }}

0 commit comments

Comments
 (0)