Skip to content

Commit

Permalink
Restore name in workflows check actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Feb 28, 2024
1 parent af249bd commit 71cc1de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/application_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ jobs:
- uses: LouisBrunner/checks-action@v2.0.0
if: ${{ always() }}
with:
check_id: application-deployment-${{ github.event.workflow_run.head_commit.id }}
# check_id: application-deployment-${{ github.event.workflow_run.head_commit.id }}
conclusion: ${{ job.status }}
details_url: "https://github.com/MTES-MCT/monitorfish/actions/runs/${{ github.run_id }}/job/${{ github.job_id }}"
name: Application Deployment
sha: ${{ github.event.workflow_run.head_commit.id }}
token: ${{ secrets.GITHUB_TOKEN }}
6 changes: 4 additions & 2 deletions .github/workflows/application_e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,10 @@ jobs:
- uses: LouisBrunner/checks-action@v2.0.0
if: ${{ always() }}
with:
check_id: application-e2e-cypress-${{ github.event.workflow_run.head_commit.id }}
# check_id: application-e2e-cypress-${{ github.event.workflow_run.head_commit.id }}
conclusion: ${{ job.status }}
details_url: "https://github.com/MTES-MCT/monitorfish/actions/runs/${{ github.run_id }}/job/${{ github.job_id }}"
name: Application E2E Tests (Cypress)
sha: ${{ github.event.workflow_run.head_commit.id }}
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -155,8 +156,9 @@ jobs:
- uses: LouisBrunner/checks-action@v2.0.0
if: ${{ always() }}
with:
check_id: application-e2e-puppeteer-${{ github.event.workflow_run.head_commit.id }}
# check_id: application-e2e-puppeteer-${{ github.event.workflow_run.head_commit.id }}
conclusion: ${{ job.status }}
details_url: "https://github.com/MTES-MCT/monitorfish/actions/runs/${{ github.run_id }}/job/${{ github.job_id }}"
name: Application E2E Tests (Puppeteer)
sha: ${{ github.event.workflow_run.head_commit.id }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 71cc1de

Please sign in to comment.