From 999245a28f2649ca9812fb3c51cc62760369cdc1 Mon Sep 17 00:00:00 2001 From: Alex Urbina <42731074+urbinaalex17@users.noreply.github.com> Date: Mon, 27 May 2024 15:33:02 -0600 Subject: [PATCH] BRE-87 Add enable feature for upcoming release version Slack notifications (#4122) * BRE-87 ADD: enable_slack_notification input to version-bump workflow * BRE-87 TEST: Update version-bump workflow to use bitwarden/gh-actions/report-upcoming-release-version@task/BRE-87 * BRE-87 TEST: disable merge * BRE-87 DEBUG: enable_slack_notification input to version-bump workflow * BRE-87 TEST: Disable version PR creation and approval * BRE-87 FIX: conditional statement in version-bump workflow * Revert "BRE-87 TEST: Disable version PR creation and approval" This reverts commit 59025ab5f6f42c9183bc0e11c25a98c13f02a24a. * Revert "BRE-87 TEST: disable merge" This reverts commit 040bdb17bff0e365c27bb116c1aca2eda2f9bb5e. * Revert "BRE-87 TEST: Update version-bump workflow to use bitwarden/gh-actions/report-upcoming-release-version@task/BRE-87" This reverts commit 9e61d114c8495f2c540df22cbab4de4164b12897. --- .github/workflows/version-bump.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index 57c8ac6fca..d254cbdd09 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -12,6 +12,10 @@ on: description: "Cut RC branch?" default: true type: boolean + enable_slack_notification: + description: "Enable Slack notifications for upcoming release?" + default: false + type: boolean jobs: bump_version: @@ -26,6 +30,14 @@ jobs: with: version: ${{ inputs.version_number_override }} + - name: Slack Notification Check + run: | + if [[ "${{ inputs.enable_slack_notification }}" == true ]]; then + echo "Slack notifications enabled." + else + echo "Slack notifications disabled." + fi + - name: Check out branch uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 with: @@ -199,7 +211,7 @@ jobs: run: gh pr merge $PR_NUMBER --squash --auto --delete-branch - name: Report upcoming release version to Slack - if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }} + if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' && inputs.enable_slack_notification == true }} uses: bitwarden/gh-actions/report-upcoming-release-version@main with: version: ${{ steps.set-final-version-output.outputs.version }}