We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c1490b4 + 2f18848 commit 70bf269Copy full SHA for 70bf269
.github/workflows/test-all-packages.yml
@@ -107,6 +107,12 @@ jobs:
107
if: steps.built.outputs.cache-hit != 'true'
108
# END-RESTORE-BOILERPLATE
109
110
+ - name: temp for debugging github action conditional on push
111
+ if: ${{github.event_name == 'push'}}
112
+ run: echo ==== running with event_name=push set
113
+ - name: temp for debugging github action conditional on target branch
114
+ if: ${{github.ref_name == 'refs/heads/test-post-ci-benchmark-support'}}
115
+ run: echo ==== running with github.ref=targetbranch set
116
- name: temp for debugging github action
117
if: ${{github.event_name == 'push'}}
118
run: echo ==== running with event_name=push set
0 commit comments