From a5175fee4447571f22ba1fead7451aa32874d6a2 Mon Sep 17 00:00:00 2001 From: Alex Urbina Date: Thu, 23 May 2024 10:02:39 -0600 Subject: [PATCH] BRE-87 DEBUG: enable_slack_notification input to version-bump workflow --- .github/workflows/version-bump.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index 710dc0e7c7..b236180076 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -30,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: