From ad0e662f3833f592196680f0349dec88d6730abc Mon Sep 17 00:00:00 2001 From: Muhammad Faizan Date: Tue, 17 Sep 2024 15:57:33 +0200 Subject: [PATCH 1/5] replace prow build job waiting with github action --- .github/workflows/pull-e2e-test.yml | 37 ++++++++++++++------ .github/workflows/pull-e2e-upgrade-test.yaml | 37 ++++++++++++++------ .github/workflows/push-e2e-upgrade-test.yaml | 37 ++++++++++++++------ 3 files changed, 81 insertions(+), 30 deletions(-) diff --git a/.github/workflows/pull-e2e-test.yml b/.github/workflows/pull-e2e-test.yml index b3488503..a2723e06 100644 --- a/.github/workflows/pull-e2e-test.yml +++ b/.github/workflows/pull-e2e-test.yml @@ -45,18 +45,35 @@ jobs: run: | make install IMG=$DOCKER_IMAGE - - name: Wait for the 'pull-nats-manager-build' job to succeed - uses: kyma-project/wait-for-commit-status-action@2b3ffe09af8b6f40e1213d5fb7f91a7bd41ffb20 + - name: Wait for build job - Checkout eventing-tools + uses: actions/checkout@v4 + with: + repository: 'kyma-project/eventing-tools' + path: 'kyma-project/eventing-tools' + ref: main + sparse-checkout: 'scripts/wait-for-commit-check' + + - name: Wait for build job - Setup python + uses: actions/setup-python@v5 with: - context: "pull-nats-manager-build" - commit_ref: "${{ github.event.pull_request.head.sha }}" # Note: 'github.event.pull_request.head.sha' is not same as 'github.sha' on pull requests. - timeout: 600000 # 10 minutes in milliseconds - # The check interval is kept long otherwise it will exhaust the GitHub rate limit (More info: https://docs.github.com/en/rest/overview/resources-in-the-rest-api?apiVersion=2022-11-28#rate-limiting) - check_interval: 60000 # 1 minute in milliseconds + python-version: '3.10' + cache: 'pip' + + - name: Wait for build job - Install requirements + run: | + pip install -r $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/requirements.txt + + - name: Wait for build job env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - GITHUB_OWNER: "${{ github.repository_owner }}" - GITHUB_REPO: "nats-manager" + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPOSITORY_FULL_NAME: ${{ github.repository_owner }}/nats-manager + GIT_REF: "${{ github.event.pull_request.head.sha }}" # Note: 'github.event.pull_request.head.sha' is not same as 'github.sha' on pull requests. + # The re-usable image-builder workflow from neighbors appends the "Build image" suffix to the check run name. + GIT_CHECK_RUN_NAME: "build / Build image" + INTERVAL: 60 + TIMEOUT: 900 + run: | + python $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/run.py - name: Create kyma-system namespace run: | diff --git a/.github/workflows/pull-e2e-upgrade-test.yaml b/.github/workflows/pull-e2e-upgrade-test.yaml index 18d7c9d0..4193a29d 100644 --- a/.github/workflows/pull-e2e-upgrade-test.yaml +++ b/.github/workflows/pull-e2e-upgrade-test.yaml @@ -50,18 +50,35 @@ jobs: run: | make e2e-setup - - name: Wait for the 'pull-nats-manager-build' job to succeed - uses: kyma-project/wait-for-commit-status-action@2b3ffe09af8b6f40e1213d5fb7f91a7bd41ffb20 + - name: Wait for build job - Checkout eventing-tools + uses: actions/checkout@v4 + with: + repository: 'kyma-project/eventing-tools' + path: 'kyma-project/eventing-tools' + ref: main + sparse-checkout: 'scripts/wait-for-commit-check' + + - name: Wait for build job - Setup python + uses: actions/setup-python@v5 with: - context: "pull-nats-manager-build" - commit_ref: "${{ github.event.pull_request.head.sha }}" # Note: 'github.event.pull_request.head.sha' is not same as 'github.sha' on pull requests. - timeout: 600000 # 10 minutes in milliseconds - # The check interval is kept long otherwise it will exhaust the GitHub rate limit (More info: https://docs.github.com/en/rest/overview/resources-in-the-rest-api?apiVersion=2022-11-28#rate-limiting) - check_interval: 60000 # 1 minute in milliseconds + python-version: '3.10' + cache: 'pip' + + - name: Wait for build job - Install requirements + run: | + pip install -r $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/requirements.txt + + - name: Wait for build job env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - GITHUB_OWNER: "${{ github.repository_owner }}" - GITHUB_REPO: "nats-manager" + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPOSITORY_FULL_NAME: ${{ github.repository_owner }}/nats-manager + GIT_REF: "${{ github.event.pull_request.head.sha }}" # Note: 'github.event.pull_request.head.sha' is not same as 'github.sha' on pull requests. + # The re-usable image-builder workflow from neighbors appends the "Build image" suffix to the check run name. + GIT_CHECK_RUN_NAME: "build / Build image" + INTERVAL: 60 + TIMEOUT: 900 + run: | + python $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/run.py - name: Install the new NATS manager from current commit run: | diff --git a/.github/workflows/push-e2e-upgrade-test.yaml b/.github/workflows/push-e2e-upgrade-test.yaml index 17b70e49..5af022df 100644 --- a/.github/workflows/push-e2e-upgrade-test.yaml +++ b/.github/workflows/push-e2e-upgrade-test.yaml @@ -50,18 +50,35 @@ jobs: run: | make e2e-setup - - name: Wait for the 'post-nats-manager-build' job to succeed - uses: kyma-project/wait-for-commit-status-action@2b3ffe09af8b6f40e1213d5fb7f91a7bd41ffb20 + - name: Wait for build job - Checkout eventing-tools + uses: actions/checkout@v4 + with: + repository: 'kyma-project/eventing-tools' + path: 'kyma-project/eventing-tools' + ref: main + sparse-checkout: 'scripts/wait-for-commit-check' + + - name: Wait for build job - Setup python + uses: actions/setup-python@v5 with: - context: "post-nats-manager-build" - commit_ref: "${{ github.sha }}" - timeout: 600000 # 10 minutes in milliseconds - # The check interval is kept long otherwise it will exhaust the GitHub rate limit (More info: https://docs.github.com/en/rest/overview/resources-in-the-rest-api?apiVersion=2022-11-28#rate-limiting) - check_interval: 60000 # 1 minute in milliseconds + python-version: '3.10' + cache: 'pip' + + - name: Wait for build job - Install requirements + run: | + pip install -r $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/requirements.txt + + - name: Wait for build job env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - GITHUB_OWNER: "${{ github.repository_owner }}" - GITHUB_REPO: "nats-manager" + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPOSITORY_FULL_NAME: ${{ github.repository_owner }}/nats-manager + GIT_REF: "${{ github.sha }}" + # The re-usable image-builder workflow from neighbors appends the "Build image" suffix to the check run name. + GIT_CHECK_RUN_NAME: "build / Build image" + INTERVAL: 60 + TIMEOUT: 900 + run: | + python $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/run.py - name: Install the new NATS manager from current commit env: From c8d23770727501ec8dbc5320d83f00c71d7583e6 Mon Sep 17 00:00:00 2001 From: Muhammad Faizan Date: Tue, 17 Sep 2024 16:20:11 +0200 Subject: [PATCH 2/5] updated --- .github/workflows/create-release.yaml | 46 ++++++++++++++++-- .github/workflows/pull-e2e-test.yml | 70 ++++++++++++++------------- 2 files changed, 78 insertions(+), 38 deletions(-) diff --git a/.github/workflows/create-release.yaml b/.github/workflows/create-release.yaml index de99a260..09107204 100644 --- a/.github/workflows/create-release.yaml +++ b/.github/workflows/create-release.yaml @@ -40,6 +40,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + token: ${{ secrets.GIT_BOT_TOKEN }} # creating git tag using bot token because GITHUB_TOKEN would not trigger build workflow (https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow). - name: Create changelog env: @@ -54,14 +55,13 @@ jobs: RELEASE_ID=$(./.github/scripts/create_draft_release.sh ${{ github.event.inputs.version }}) # this will use the CHANGELOG.md from the step 'Create changelog' echo "release_id=$RELEASE_ID" >> $GITHUB_OUTPUT - - name: Trigger 'release-nats-manager-build' prow job + - name: Add lightweight tag to trigger release build job + env: + GITHUB_TOKEN: ${{ secrets.GIT_BOT_TOKEN }} # creating git tag using bot token because GITHUB_TOKEN would not trigger build workflow (https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow). run: | git tag ${{ github.event.inputs.version }} git push origin ${{ github.event.inputs.version }} - - name: Wait for 'release-nats-manager-build' - run: ./.github/scripts/check-prow-build-job.sh ${{ github.ref_name }} 600 10 30 - - name: Create and upload nats-manager.yaml and nats-default-cr.yaml env: KUSTOMIZE_VERSION: "v4.5.6" @@ -71,9 +71,45 @@ jobs: outputs: release_id: ${{ steps.create-draft.outputs.release_id }} + wait-for-build-job: + name: Wait for build job + needs: [ create-draft ] + runs-on: ubuntu-latest + + steps: + - name: Checkout eventing-tools + uses: actions/checkout@v4 + with: + repository: 'kyma-project/eventing-tools' + path: 'kyma-project/eventing-tools' + ref: main + sparse-checkout: 'scripts/wait-for-commit-check' + + - name: Setup python + uses: actions/setup-python@v5 + with: + python-version: '3.10' + cache: 'pip' + + - name: Install requirements + run: | + pip install -r $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/requirements.txt + + - name: wait for build + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPOSITORY_FULL_NAME: ${{ github.repository_owner }}/nats-manager + GIT_REF: ${{ github.event.inputs.version }} + # The re-usable image-builder workflow from neighbors appends the "Build image" suffix to the check run name. + GIT_CHECK_RUN_NAME: "build-${{ github.event.inputs.version }} / Build image" + INTERVAL: 60 + TIMEOUT: 900 + run: | + python $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/run.py + publish-release: name: Publish release - needs: [verify-release-status, create-draft] + needs: [verify-release-status, create-draft, wait-for-build-job] runs-on: ubuntu-latest steps: diff --git a/.github/workflows/pull-e2e-test.yml b/.github/workflows/pull-e2e-test.yml index a2723e06..40d7fcc8 100644 --- a/.github/workflows/pull-e2e-test.yml +++ b/.github/workflows/pull-e2e-test.yml @@ -15,7 +15,44 @@ on: - "sec-scanners-config.yaml" jobs: + wait-for-build-job: + name: Wait for build job + runs-on: ubuntu-latest + + steps: + - name: Checkout eventing-tools + uses: actions/checkout@v4 + with: + repository: 'kyma-project/eventing-tools' + path: 'kyma-project/eventing-tools' + ref: main + sparse-checkout: 'scripts/wait-for-commit-check' + + - name: Setup python + uses: actions/setup-python@v5 + with: + python-version: '3.10' + cache: 'pip' + + - name: Install requirements + run: | + pip install -r $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/requirements.txt + + - name: Wait for build job + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPOSITORY_FULL_NAME: ${{ github.repository_owner }}/nats-manager + GIT_REF: "${{ github.event.pull_request.head.sha }}" # Note: 'github.event.pull_request.head.sha' is not same as 'github.sha' on pull requests. + # The re-usable image-builder workflow from neighbors appends the "Build image" suffix to the check run name. + GIT_CHECK_RUN_NAME: "build / Build image" + INTERVAL: 60 + TIMEOUT: 900 + run: | + python $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/run.py + e2e: + name: e2e + needs: [ wait-for-build-job ] runs-on: ubuntu-latest steps: - name: Checkout @@ -45,36 +82,6 @@ jobs: run: | make install IMG=$DOCKER_IMAGE - - name: Wait for build job - Checkout eventing-tools - uses: actions/checkout@v4 - with: - repository: 'kyma-project/eventing-tools' - path: 'kyma-project/eventing-tools' - ref: main - sparse-checkout: 'scripts/wait-for-commit-check' - - - name: Wait for build job - Setup python - uses: actions/setup-python@v5 - with: - python-version: '3.10' - cache: 'pip' - - - name: Wait for build job - Install requirements - run: | - pip install -r $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/requirements.txt - - - name: Wait for build job - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - REPOSITORY_FULL_NAME: ${{ github.repository_owner }}/nats-manager - GIT_REF: "${{ github.event.pull_request.head.sha }}" # Note: 'github.event.pull_request.head.sha' is not same as 'github.sha' on pull requests. - # The re-usable image-builder workflow from neighbors appends the "Build image" suffix to the check run name. - GIT_CHECK_RUN_NAME: "build / Build image" - INTERVAL: 60 - TIMEOUT: 900 - run: | - python $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/run.py - - name: Create kyma-system namespace run: | kubectl create namespace kyma-system @@ -132,6 +139,3 @@ jobs: if: failure() run: | kubectl get nats --all-namespaces - -# references: -# wait for other gh checks to finish: https://github.com/marketplace/actions/wait-for-check From 375c3c05d463ec186c6dae48a36d47a9f5ee37d6 Mon Sep 17 00:00:00 2001 From: Muhammad Faizan Date: Tue, 17 Sep 2024 16:31:30 +0200 Subject: [PATCH 3/5] updated --- .github/workflows/pull-e2e-test.yml | 61 +++++++++++ .github/workflows/pull-e2e-upgrade-test.yaml | 105 ------------------- 2 files changed, 61 insertions(+), 105 deletions(-) delete mode 100644 .github/workflows/pull-e2e-upgrade-test.yaml diff --git a/.github/workflows/pull-e2e-test.yml b/.github/workflows/pull-e2e-test.yml index 40d7fcc8..7990ab06 100644 --- a/.github/workflows/pull-e2e-test.yml +++ b/.github/workflows/pull-e2e-test.yml @@ -139,3 +139,64 @@ jobs: if: failure() run: | kubectl get nats --all-namespaces + + e2e-upgrade: # This job tests the upgrade of NATS module from latest image of the main branch to the current commit. + name: e2e-upgrade + needs: [ wait-for-build-job ] + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Cache Go dependencies + uses: actions/setup-go@v5 + with: + go-version-file: "./go.mod" + check-latest: true + cache-dependency-path: "./go.sum" + + - run: go version + + - name: Install k3d tools + run: | + make -C hack/ci/ install-k3d-tools + + - name: Install Kyma CLI & setup k3d cluster using kyma CLI + run: | + make kyma + make -C hack/ci/ create-k3d + kubectl version + kubectl cluster-info + + - name: Install latest NATS manager from main branch + run: | + make -C hack/ci/ create-kyma-system-ns + make deploy IMG=europe-docker.pkg.dev/kyma-project/prod/nats-manager:main + + - name: Setup & test NATS CR + run: | + make e2e-setup + + - name: Install the new NATS manager from current commit + run: | + make deploy IMG=${DOCKER_IMAGE} + + - name: Wait for new changes to be reflected + # Waits for NATS-manager image to be updated and NATS CR readiness. + run: | + export MANAGER_IMAGE=${DOCKER_IMAGE} + make e2e-setup + + - name: Run NATS bench + run: | + go install github.com/nats-io/natscli/nats@latest + export PATH=$HOME/go/bin:$PATH + make e2e-bench + + - name: Test NATS-server + run: | + make e2e-nats-server + + - name: Cleanup NATS CR + run: | + make e2e-cleanup diff --git a/.github/workflows/pull-e2e-upgrade-test.yaml b/.github/workflows/pull-e2e-upgrade-test.yaml deleted file mode 100644 index 4193a29d..00000000 --- a/.github/workflows/pull-e2e-upgrade-test.yaml +++ /dev/null @@ -1,105 +0,0 @@ -name: pull-e2e-upgrade-test - -env: - DOCKER_IMAGE: europe-docker.pkg.dev/kyma-project/dev/nats-manager:PR-${{ github.event.number }} - E2E_LOG_LEVEL: debug - KYMA_STABILITY: "unstable" - KYMA: "./hack/kyma" - -on: - pull_request: - branches: ["main"] - paths-ignore: - - "docs/**" - - "**.md" - - "sec-scanners-config.yaml" - -jobs: - e2e-upgrade: # This job tests the upgrade of NATS module from latest image of the main branch to the current commit. - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Cache Go dependencies - uses: actions/setup-go@v5 - with: - go-version-file: "./go.mod" - check-latest: true - cache-dependency-path: "./go.sum" - - - run: go version - - - name: Install k3d tools - run: | - make -C hack/ci/ install-k3d-tools - - - name: Install Kyma CLI & setup k3d cluster using kyma CLI - run: | - make kyma - make -C hack/ci/ create-k3d - kubectl version - kubectl cluster-info - - - name: Install latest NATS manager from main branch - run: | - make -C hack/ci/ create-kyma-system-ns - make deploy IMG=europe-docker.pkg.dev/kyma-project/prod/nats-manager:main - - - name: Setup & test NATS CR - run: | - make e2e-setup - - - name: Wait for build job - Checkout eventing-tools - uses: actions/checkout@v4 - with: - repository: 'kyma-project/eventing-tools' - path: 'kyma-project/eventing-tools' - ref: main - sparse-checkout: 'scripts/wait-for-commit-check' - - - name: Wait for build job - Setup python - uses: actions/setup-python@v5 - with: - python-version: '3.10' - cache: 'pip' - - - name: Wait for build job - Install requirements - run: | - pip install -r $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/requirements.txt - - - name: Wait for build job - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - REPOSITORY_FULL_NAME: ${{ github.repository_owner }}/nats-manager - GIT_REF: "${{ github.event.pull_request.head.sha }}" # Note: 'github.event.pull_request.head.sha' is not same as 'github.sha' on pull requests. - # The re-usable image-builder workflow from neighbors appends the "Build image" suffix to the check run name. - GIT_CHECK_RUN_NAME: "build / Build image" - INTERVAL: 60 - TIMEOUT: 900 - run: | - python $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/run.py - - - name: Install the new NATS manager from current commit - run: | - make deploy IMG=${DOCKER_IMAGE} - - - name: Wait for new changes to be reflected - # Waits for NATS-manager image to be updated and NATS CR readiness. - run: | - export MANAGER_IMAGE=${DOCKER_IMAGE} - make e2e-setup - - - name: Run NATS bench - run: | - go install github.com/nats-io/natscli/nats@latest - export PATH=$HOME/go/bin:$PATH - make e2e-bench - - - name: Test NATS-server - run: | - make e2e-nats-server - - - name: Cleanup NATS CR - run: | - make e2e-cleanup From de284ecad3b62e03ba243c65782d32bd0a38220e Mon Sep 17 00:00:00 2001 From: Muhammad Faizan Date: Tue, 17 Sep 2024 16:34:44 +0200 Subject: [PATCH 4/5] updated --- .github/workflows/push-e2e-upgrade-test.yaml | 36 ++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/.github/workflows/push-e2e-upgrade-test.yaml b/.github/workflows/push-e2e-upgrade-test.yaml index 5af022df..a44027b7 100644 --- a/.github/workflows/push-e2e-upgrade-test.yaml +++ b/.github/workflows/push-e2e-upgrade-test.yaml @@ -15,7 +15,43 @@ on: - "sec-scanners-config.yaml" jobs: + wait-for-build-job: + name: Wait for build job + runs-on: ubuntu-latest + + steps: + - name: Checkout eventing-tools + uses: actions/checkout@v4 + with: + repository: 'kyma-project/eventing-tools' + path: 'kyma-project/eventing-tools' + ref: main + sparse-checkout: 'scripts/wait-for-commit-check' + + - name: Setup python + uses: actions/setup-python@v5 + with: + python-version: '3.10' + cache: 'pip' + + - name: Install requirements + run: | + pip install -r $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/requirements.txt + + - name: Wait for build job + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPOSITORY_FULL_NAME: ${{ github.repository_owner }}/nats-manager + GIT_REF: "${{ github.sha }}" + # The re-usable image-builder workflow from neighbors appends the "Build image" suffix to the check run name. + GIT_CHECK_RUN_NAME: "build / Build image" + INTERVAL: 60 + TIMEOUT: 900 + run: | + python $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/run.py + e2e-upgrade: # This job tests the upgrade of NATS module from latest release from fast channel to current commit. + needs: [ wait-for-build-job ] runs-on: ubuntu-latest steps: - name: Checkout From 143eb47711a9f63a1d999190a3afef2b68e6e698 Mon Sep 17 00:00:00 2001 From: Muhammad Faizan Date: Tue, 17 Sep 2024 16:35:51 +0200 Subject: [PATCH 5/5] updated --- .github/workflows/push-e2e-upgrade-test.yaml | 30 -------------------- 1 file changed, 30 deletions(-) diff --git a/.github/workflows/push-e2e-upgrade-test.yaml b/.github/workflows/push-e2e-upgrade-test.yaml index a44027b7..7a11bf4c 100644 --- a/.github/workflows/push-e2e-upgrade-test.yaml +++ b/.github/workflows/push-e2e-upgrade-test.yaml @@ -86,36 +86,6 @@ jobs: run: | make e2e-setup - - name: Wait for build job - Checkout eventing-tools - uses: actions/checkout@v4 - with: - repository: 'kyma-project/eventing-tools' - path: 'kyma-project/eventing-tools' - ref: main - sparse-checkout: 'scripts/wait-for-commit-check' - - - name: Wait for build job - Setup python - uses: actions/setup-python@v5 - with: - python-version: '3.10' - cache: 'pip' - - - name: Wait for build job - Install requirements - run: | - pip install -r $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/requirements.txt - - - name: Wait for build job - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - REPOSITORY_FULL_NAME: ${{ github.repository_owner }}/nats-manager - GIT_REF: "${{ github.sha }}" - # The re-usable image-builder workflow from neighbors appends the "Build image" suffix to the check run name. - GIT_CHECK_RUN_NAME: "build / Build image" - INTERVAL: 60 - TIMEOUT: 900 - run: | - python $GITHUB_WORKSPACE/kyma-project/eventing-tools/scripts/wait-for-commit-check/run.py - - name: Install the new NATS manager from current commit env: COMMIT_SHA: "${{ github.sha }}"