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 df73f86 commit f9093d4Copy full SHA for f9093d4
.github/workflows/cicd-main.yml
@@ -27,6 +27,7 @@ concurrency:
27
permissions:
28
id-token: write
29
contents: read
30
+ statuses: write
31
32
jobs:
33
pre-flight:
@@ -46,7 +47,15 @@ jobs:
46
47
48
cicd-container-build:
49
uses: ./.github/workflows/_build_container.yml
- needs: cicd-wait-in-queue
50
+ needs: [pre-flight, cicd-wait-in-queue]
51
+ if: |
52
+ (
53
+ success()
54
+ || needs.pre-flight.outputs.is_ci_workload == 'true'
55
+ || needs.pre-flight.outputs.force_run_all == 'true'
56
+ )
57
+ && needs.pre-flight.outputs.docs_only == 'false'
58
+ && !cancelled()
59
with:
60
image-name: emerging_optimizers
61
dockerfile: docker/Dockerfile.ci
0 commit comments