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 ef15042 commit f925f74Copy full SHA for f925f74
1 file changed
.github/workflows/ci.yml
@@ -137,12 +137,18 @@ jobs:
137
- id: diff
138
env:
139
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
140
+ GH_PR_NUM: ${{ github.event.number }}
141
run: |
- if gh pr diff --name-only | grep -e .github/workflows -e .github/actions >/dev/null 2>&1; then
142
+ if gh pr diff --name-only --repo $GITHUB_REPOSITORY $GH_PR_NUM | grep -q -e .github/workflows -e .github/actions; then
143
echo "Worflow changes detected"
144
echo "actions-changed=true" >> "$GITHUB_OUTPUT"
145
fi
146
147
+ - id: fail
148
+ run: |
149
+ echo "REMOVE TO MERGE"
150
+ exit 1
151
+
152
notify-draft-services:
153
name: 🚀 Notify external services - draft
154
runs-on: ubuntu-24.04-arm
0 commit comments