Skip to content

Commit

Permalink
Add a ci-ok job that requires all the matrix jobs (#361)
Browse files Browse the repository at this point in the history
This way we can set up the merges to require this job to pass. This is
useful for renovate-bot so it can automerge.
  • Loading branch information
julienp authored Jan 7, 2025
1 parent 10396f2 commit cc1149b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ jobs:
[1]: ${{ steps.vars.outputs.run-url }}
kitchen-sink:
name: All SDKs image
strategy:
matrix:
go-version: [1.21.x]
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down Expand Up @@ -557,3 +554,11 @@ jobs:
--entrypoint /src/pulumi-test-containers \
${{ env.IMAGE_NAME }} \
-test.parallel=1 -test.timeout=1h -test.v -test.run "TestPulumiTemplateTests|TestEnvironment"
ci-ok:
name: ci-ok
needs: [kitchen-sink, provider-build-environment, base, debian-sdk, ubi-sdk]
runs-on: ubuntu-latest
steps:
- name: CI succeeded
run: exit 0

0 comments on commit cc1149b

Please sign in to comment.