1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

BRE-87 DEBUG: enable_slack_notification input to version-bump workflow

This commit is contained in:
Alex Urbina
2024-05-23 10:02:39 -06:00
parent 040bdb17bf
commit a5175fee44

View File

@ -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: