-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore name in workflows check actions
- Loading branch information
1 parent
af249bd
commit 71cc1de
Showing
2 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,8 +58,9 @@ jobs: | |
- uses: LouisBrunner/[email protected] | ||
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,9 +92,10 @@ jobs: | |
- uses: LouisBrunner/[email protected] | ||
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/[email protected] | ||
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 }} |