Skip to content

Commit cc1149b

Browse files
authored
Add a ci-ok job that requires all the matrix jobs (#361)
This way we can set up the merges to require this job to pass. This is useful for renovate-bot so it can automerge.
1 parent 10396f2 commit cc1149b

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,6 @@ jobs:
7171
[1]: ${{ steps.vars.outputs.run-url }}
7272
kitchen-sink:
7373
name: All SDKs image
74-
strategy:
75-
matrix:
76-
go-version: [1.21.x]
7774
runs-on: ubuntu-latest
7875
permissions:
7976
id-token: write
@@ -557,3 +554,11 @@ jobs:
557554
--entrypoint /src/pulumi-test-containers \
558555
${{ env.IMAGE_NAME }} \
559556
-test.parallel=1 -test.timeout=1h -test.v -test.run "TestPulumiTemplateTests|TestEnvironment"
557+
558+
ci-ok:
559+
name: ci-ok
560+
needs: [kitchen-sink, provider-build-environment, base, debian-sdk, ubi-sdk]
561+
runs-on: ubuntu-latest
562+
steps:
563+
- name: CI succeeded
564+
run: exit 0

0 commit comments

Comments
 (0)