-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: use separate custom check run name to avoid job name conflicts
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
- Loading branch information
1 parent
f417ad5
commit 56856d7
Showing
1 changed file
with
5 additions
and
5 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 |
---|---|---|
|
@@ -15,26 +15,26 @@ jobs: | |
checks: write | ||
contents: read | ||
steps: | ||
- name: Create Initial Check Run | ||
- name: Create Custom Check Run | ||
uses: LouisBrunner/[email protected] | ||
with: | ||
token: ${{ github.token }} | ||
name: "Dummy Check" | ||
name: "Custom Test Report" | ||
status: "in_progress" | ||
output: | | ||
{ | ||
"title": "Test Check", | ||
"title": "Test Report", | ||
"summary": "Running test check..." | ||
} | ||
- name: Sleep for a moment | ||
run: sleep 5 | ||
|
||
- name: Update Check Run with Details URL | ||
- name: Update Custom Check Run | ||
uses: LouisBrunner/[email protected] | ||
with: | ||
token: ${{ github.token }} | ||
name: "Dummy Check" | ||
name: "Custom Test Report" | ||
status: "completed" | ||
conclusion: "failure" | ||
details_url: "https://www.google.com/search?q=test-failure" | ||
|