Skip to content

Commit 873d8c9

Browse files
committed
feat(ci): trigger orca
1 parent 38079f7 commit 873d8c9

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/orca.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 }}

0 commit comments

Comments
 (0)