Skip to content

Commit 8512f52

Browse files
authored
ci(gha): Mark version as optional in release workflow (#704)
1 parent 1399be6 commit 8512f52

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_dispatch:
44
inputs:
55
version:
6-
description: Version to release
6+
description: Version to release (optional)
77
required: false
88
skip_prepare:
99
description: Skip preparation step (assume a release branch is ready)
@@ -21,7 +21,7 @@ on:
2121
# We want the release to be at 10 or 11am Pacific Time
2222
# We also make this an hour after all others such as Sentry,
2323
# Snuba, and Relay to make sure their releases finish.
24-
- cron: '0 18 15 * *'
24+
- cron: "0 18 15 * *"
2525
jobs:
2626
release:
2727
runs-on: ubuntu-latest
@@ -60,8 +60,8 @@ jobs:
6060
with:
6161
action: publish
6262
version: ${{ github.event.inputs.version || steps.calver.outputs.version }}
63-
keep_branch: '--keep-branch'
64-
no_merge: '--no-merge'
63+
keep_branch: "--keep-branch"
64+
no_merge: "--no-merge"
6565
env:
6666
DRY_RUN: ${{ github.event.inputs.dry_run }}
6767
GIT_COMMITTER_NAME: getsentry-bot

0 commit comments

Comments
 (0)