We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31fb056 commit 777ceb5Copy full SHA for 777ceb5
1 file changed
.github/workflows/orca.yml
@@ -12,10 +12,16 @@ concurrency:
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:
- ref_var: REF_COATJAVA
- 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)
25
secrets:
26
orca_project_id: ${{ secrets.ORCA_PROJECT_ID }}
27
orca_project_token: ${{ secrets.ORCA_PROJECT_TOKEN }}
0 commit comments