Skip to content

Commit

Permalink
Add missing commit sha to workflows status check action
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Feb 28, 2024
1 parent 28d79cb commit 5ba8491
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/application_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -56,4 +56,5 @@ jobs:
with:
conclusion: ${{ job.status }}
name: Application Deployment
sha: ${{ github.event.workflow_run.head_commit.id }}
token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 3 additions & 1 deletion .github/workflows/application_e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}

0 comments on commit 5ba8491

Please sign in to comment.