From 5ba84915878db6060568dd3945fce04cb0d13300 Mon Sep 17 00:00:00 2001 From: Ivan Gabriele Date: Wed, 28 Feb 2024 07:37:11 +0100 Subject: [PATCH] Add missing commit sha to workflows status check action --- .github/workflows/application_deployment.yml | 3 ++- .github/workflows/application_e2e_tests.yml | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/application_deployment.yml b/.github/workflows/application_deployment.yml index 3455739016..2db5125c4c 100644 --- a/.github/workflows/application_deployment.yml +++ b/.github/workflows/application_deployment.yml @@ -10,7 +10,7 @@ on: - master concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch }} cancel-in-progress: true jobs: @@ -56,4 +56,5 @@ jobs: with: conclusion: ${{ job.status }} name: Application Deployment + sha: ${{ github.event.workflow_run.head_commit.id }} token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/application_e2e_tests.yml b/.github/workflows/application_e2e_tests.yml index 1fd20d88f9..7e977c3c1e 100644 --- a/.github/workflows/application_e2e_tests.yml +++ b/.github/workflows/application_e2e_tests.yml @@ -8,7 +8,7 @@ on: - completed concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch }} cancel-in-progress: true jobs: @@ -92,6 +92,7 @@ jobs: with: conclusion: ${{ job.status }} name: Application Cypress E2E tests + sha: ${{ github.event.workflow_run.head_commit.id }} token: ${{ secrets.GITHUB_TOKEN }} e2e_multi_windows_test: @@ -151,4 +152,5 @@ jobs: with: conclusion: ${{ job.status }} name: Application Puppeteer E2E tests + sha: ${{ github.event.workflow_run.head_commit.id }} token: ${{ secrets.GITHUB_TOKEN }}