From 71cc1de30e87bc3017ebae221130f9e232582d2a Mon Sep 17 00:00:00 2001 From: Ivan Gabriele Date: Wed, 28 Feb 2024 09:22:54 +0100 Subject: [PATCH] Restore name in workflows check actions --- .github/workflows/application_deployment.yml | 3 ++- .github/workflows/application_e2e_tests.yml | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/application_deployment.yml b/.github/workflows/application_deployment.yml index 51941b8a8d..469d44be20 100644 --- a/.github/workflows/application_deployment.yml +++ b/.github/workflows/application_deployment.yml @@ -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 }} diff --git a/.github/workflows/application_e2e_tests.yml b/.github/workflows/application_e2e_tests.yml index ab843652fd..3109ad56bc 100644 --- a/.github/workflows/application_e2e_tests.yml +++ b/.github/workflows/application_e2e_tests.yml @@ -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 }} @@ -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 }}