File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ jobs:
108108 use_hdf : ${{ needs.get-old-names.outputs.hdf5-name }}
109109 file_base : ${{ needs.call-workflow-tarball.outputs.file_base }}
110110 use_environ : snapshots
111+ if : ${{ github.event_name != 'pull_request' }}
111112
112113 call-workflow-release :
113114 needs : [get-old-names, call-workflow-tarball, call-workflow-ctest]
@@ -120,7 +121,7 @@ jobs:
120121 file_sha : ${{ needs.call-workflow-tarball.outputs.file_sha }}
121122 use_tag : snapshot
122123 use_environ : snapshots
123- if : ${{ ((needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-old-names.outputs.run-ignore == 'ignore')) }}
124+ if : ${{ (github.event_name != 'pull_request') && ( (needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-old-names.outputs.run-ignore == 'ignore')) }}
124125
125126 call-workflow-remove :
126127 needs : [get-old-names, call-workflow-tarball, call-workflow-ctest, call-workflow-release]
@@ -131,7 +132,7 @@ jobs:
131132 file_base : ${{ needs.get-old-names.outputs.plugin-name }}
132133 use_tag : snapshot
133134 use_environ : snapshots
134- if : ${{ ((needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-old-names.outputs.run-ignore == 'ignore')) && (needs.get-old-names.outputs.hdf5-name != needs.call-workflow-tarball.outputs.file_base) }}
135+ if : ${{ (github.event_name != 'pull_request') && ( (needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-old-names.outputs.run-ignore == 'ignore')) && (needs.get-old-names.outputs.hdf5-name != needs.call-workflow-tarball.outputs.file_base) }}
135136
136137 call-workflow-versions :
137138 uses : ./.github/workflows/check-releases.yml
You can’t perform that action at this time.
0 commit comments