diff --git a/.github/workflows/build-publish-develop-pr.yml b/.github/workflows/build-publish-develop-pr.yml index 92d9e0445a6..bad72a1549f 100644 --- a/.github/workflows/build-publish-develop-pr.yml +++ b/.github/workflows/build-publish-develop-pr.yml @@ -154,3 +154,11 @@ jobs: goreleaser-release-type: "merge" goreleaser-config: .goreleaser.develop.yaml goreleaser-key: ${{ secrets.GORELEASER_KEY }} + + crib-integration-test: + needs: [split, image-tag] + if: ${{ github.ref == 'refs/heads/develop' }} + uses: ./.github/workflows/crib-integration-test.yml + with: + image-tag: ${{ needs.image-tag.outputs.image-tag }} + secrets: inherit diff --git a/.github/workflows/crib-integration-test.yml b/.github/workflows/crib-integration-test.yml index 5dd24167ab0..61e1cd0ac97 100644 --- a/.github/workflows/crib-integration-test.yml +++ b/.github/workflows/crib-integration-test.yml @@ -3,9 +3,13 @@ on: pull_request: paths: - ".github/workflows/crib-integration-test.yml" - schedule: - - cron: "0 1 * * *" workflow_call: + inputs: + image-tag: + default: develop + required: false + description: The chainlink docker image tag to test against + type: string concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true @@ -89,7 +93,7 @@ jobs: command: "core-dev-simulated-core-ocr1" crib-alert-slack-webhook: ${{ secrets.CRIB_ALERT_SLACK_WEBHOOK }} product-image: ${{ secrets.AWS_SDLC_ECR_HOSTNAME }}/chainlink - product-image-tag: develop + product-image-tag: ${{ inputs.image-tag }} - uses: actions/checkout@v4.2.1 - name: Set up Go uses: ./.github/actions/setup-go