We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 628897b commit 432bfa9Copy full SHA for 432bfa9
.github/workflows/ci_build_scm_ubuntu_nvidia.yml
@@ -1,11 +1,18 @@
1
name: build the CCPP-SCM with Nvidia
2
3
-on: [pull_request,workflow_dispatch]
+on:
4
+ workflow_run:
5
+ workflows: ["build and run SCM regression tests"]
6
+ types:
7
+ - completed
8
9
jobs:
10
11
build_scm:
- # The type of runner that the job will run on
12
+ # trigger only after the SCM regression tests have completed from a PR or workflow event
13
+ if: |
14
+ github.event.workflow_run.event == 'pull_request' ||
15
+ github.event.workflow_run.event == 'workflow_dispatch'
16
runs-on: ubuntu-latest
17
strategy:
18
fail-fast: false
0 commit comments