We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f718b6c commit 13b8495Copy full SHA for 13b8495
.github/actions/release_to_prod/action.yml
@@ -12,13 +12,13 @@ runs:
12
13
14
- name: Do some release stuff for a hotfix
15
- if: contains(github.ref, 'hotfix')
+ if: contains(github.ref, 'hotfix') == true
16
run: |
17
echo "this is the release script for a HOTFIX"
18
shell: bash
19
20
- name: Warn about other branches
21
- if: !contains(github.ref, 'hotfix') && github.ref != 'refs/head/main'
+ if: contains(github.ref, 'hotfix') == false && github.ref != 'refs/head/main'
22
23
echo "Can only release main or hotfix"
24
0 commit comments