File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -258,19 +258,19 @@ jobs:
258258 SemVer : ${{ steps.semantic.outputs.new_release_version }}
259259 PrNumber : ${{ github.event.number }}
260260 - name : Download THRIDPARTY
261- if : github.event_name != 'pull_request'
261+ if : github.event_name != 'pull_request' && github.event_name != 'schedule'
262262 uses : actions/download-artifact@v3
263263 with :
264264 name : THIRDPARTY
265- - name : Download THRIDPARTY (Optional for PR)
266- if : github.event_name == 'pull_request'
265+ - name : Download THRIDPARTY (Optional for PR and schedule )
266+ if : github.event_name == 'pull_request' || github.event_name == 'schedule'
267267 continue-on-error : true
268268 uses : actions/download-artifact@v3
269269 with :
270270 name : THIRDPARTY
271271 - name : Update Notices
272272 run : |
273- cp -f THIRDPARTY package/THIRDPARTY || echo "THIRDPARTY file not found (allowed for PR)"
273+ cp -f THIRDPARTY package/THIRDPARTY || echo "THIRDPARTY file not found (allowed for PR and schedule )"
274274 - name : Build Package
275275 id : uccgen
276276 uses : splunk/addonfactory-ucc-generator-action@v1
You can’t perform that action at this time.
0 commit comments