From caf31ed7a5dcaa85b8eb2e32e5eb35bfbb39d396 Mon Sep 17 00:00:00 2001 From: Jan Michael Auer Date: Thu, 15 Oct 2020 19:58:54 +0200 Subject: [PATCH] ci(gha): Mark version as optional in release workflow --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6bc87c1aff1..34725dead83 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ on: workflow_dispatch: inputs: version: - description: Version to release + description: Version to release (optional) required: false skip_prepare: description: Skip preparation step (assume a release branch is ready) @@ -21,7 +21,7 @@ on: # We want the release to be at 10 or 11am Pacific Time # We also make this an hour after all others such as Sentry, # Snuba, and Relay to make sure their releases finish. - - cron: '0 18 15 * *' + - cron: "0 18 15 * *" jobs: release: runs-on: ubuntu-latest @@ -60,8 +60,8 @@ jobs: with: action: publish version: ${{ github.event.inputs.version || steps.calver.outputs.version }} - keep_branch: '--keep-branch' - no_merge: '--no-merge' + keep_branch: "--keep-branch" + no_merge: "--no-merge" env: DRY_RUN: ${{ github.event.inputs.dry_run }} GIT_COMMITTER_NAME: getsentry-bot