File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,16 @@ concurrency:
1212
1313jobs :
1414 orca :
15+ # do not run on forks or dependabot PRs
16+ if : |
17+ github.event_name == 'push' ||
18+ (github.event_name == 'pull_request' &&
19+ github.event.pull_request.head.repo.full_name == github.repository &&
20+ github.actor != 'dependabot[bot]')
1521 uses : JeffersonLab/acro/.github/workflows/orca.yml@main
1622 with :
17- ref_var : REF_COATJAVA
18- pipeline_timeout : 3600
23+ ref_var : REF_COATJAVA # controls which git ref variable gets set to the triggering ref
24+ pipeline_timeout : 3600 # maximum time to allow the pipeline to run (seconds)
1925 secrets :
2026 orca_project_id : ${{ secrets.ORCA_PROJECT_ID }}
2127 orca_project_token : ${{ secrets.ORCA_PROJECT_TOKEN }}
You can’t perform that action at this time.
0 commit comments