File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ name : orca
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches : [ development ]
7+ tags : [ '*' ]
8+
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
11+ cancel-in-progress : true
12+
13+ jobs :
14+ 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]')
21+ uses : JeffersonLab/acro/.github/workflows/orca.yml@main
22+ with :
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)
25+ secrets :
26+ orca_project_id : ${{ secrets.ORCA_PROJECT_ID }}
27+ orca_project_token : ${{ secrets.ORCA_PROJECT_TOKEN }}
28+ orca_trigger_token : ${{ secrets.ORCA_TRIGGER_TOKEN }}
You can’t perform that action at this time.
0 commit comments