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 3c4f1d3 commit 164f991Copy full SHA for 164f991
1 file changed
.github/workflows/validate-and-process.yml
@@ -250,12 +250,11 @@ jobs:
250
"
251
252
- name: Create or update challenge (GitHub-hosted)
253
- if: success() && needs.validate-host-config.outputs.requires_self_hosted != 'true'
+ if: github.event_name == 'push' && success() && needs.validate-host-config.outputs.requires_self_hosted != 'true'
254
run: |
255
echo "🚀 CREATING/UPDATING CHALLENGE"
256
echo "=============================="
257
python3 github/challenge_processing_script.py ${GITHUB_REF#refs/heads/}
258
- if: ${{ github.event_name == 'push' && success() }}
259
env:
260
IS_VALIDATION: 'False'
261
GITHUB_CONTEXT: ${{ toJson(github) }}
0 commit comments