-
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.
Add check_id & details_url to worflows status check action
- Loading branch information
1 parent
5ba8491
commit b9180ab
Showing
2 changed files
with
6 additions
and
0 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 |
---|---|---|
|
@@ -54,7 +54,9 @@ jobs: | |
- uses: LouisBrunner/[email protected] | ||
if: ${{ always() }} | ||
with: | ||
check_id: ${{ github.run_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 |
---|---|---|
|
@@ -90,6 +90,7 @@ jobs: | |
- uses: LouisBrunner/[email protected] | ||
if: ${{ always() }} | ||
with: | ||
check_id: ${{ github.run_id }} | ||
conclusion: ${{ job.status }} | ||
name: Application Cypress E2E tests | ||
sha: ${{ github.event.workflow_run.head_commit.id }} | ||
|
@@ -118,6 +119,7 @@ jobs: | |
uses: ishworkh/[email protected] | ||
with: | ||
commit_sha: ${{ github.event.workflow_run.head_commit.id }} | ||
details_url: https://github.com/MTES-MCT/monitorfish/actions/runs/${{ github.run_id }}/job/${{ github.job_id }} | ||
image: monitorfish-app:${{ env.VERSION }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
workflow: "Application Build" | ||
|
@@ -150,7 +152,9 @@ jobs: | |
- uses: LouisBrunner/[email protected] | ||
if: ${{ always() }} | ||
with: | ||
check_id: ${{ github.run_id }} | ||
conclusion: ${{ job.status }} | ||
details_url: https://github.com/MTES-MCT/monitorfish/actions/runs/${{ github.run_id }}/job/${{ github.job_id }} | ||
name: Application Puppeteer E2E tests | ||
sha: ${{ github.event.workflow_run.head_commit.id }} | ||
token: ${{ secrets.GITHUB_TOKEN }} |