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 3796920 commit b453824Copy full SHA for b453824
‎.github/workflows/ensure-release-notrunning.yml‎
@@ -27,6 +27,7 @@ jobs:
27
uses: ./.github/actions/ghasum
28
29
- name: Check for running release action
30
+ if: ${{ !startsWith(github.head_ref, 'release/') }}
31
env:
32
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
run: |
@@ -38,3 +39,9 @@ jobs:
38
39
echo "✅ No running release workflows detected."
40
fi
41
shell: bash
42
+
43
+ - name: Skip check for release branch
44
+ if: ${{ startsWith(github.head_ref, 'release/') }}
45
+ run: |
46
+ echo "✅ Skipping release workflow check for release branch: ${{ github.head_ref }}"
47
+ shell: bash
0 commit comments