-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: dont conclude checks if they were never set (#446)
- Loading branch information
1 parent
9440c4f
commit 8aef509
Showing
3 changed files
with
10 additions
and
10 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 |
---|---|---|
|
@@ -61,7 +61,7 @@ jobs: | |
run: npm run postlint --ignore-scripts -ws -iwr --if-present | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
if: steps.create-check.outputs.check-id && always() | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
conclusion: ${{ job.status }} | ||
|
@@ -142,7 +142,7 @@ jobs: | |
run: npm test --ignore-scripts -ws -iwr --if-present | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
if: steps.create-check.outputs.check-id && always() | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
conclusion: ${{ job.status }} | ||
|
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 |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
{{> stepLintYml jobRunFlags=allFlags }} | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
if: steps.create-check.outputs.check-id && always() | ||
with: | ||
token: $\{{ secrets.GITHUB_TOKEN }} | ||
conclusion: $\{{ job.status }} | ||
|
@@ -42,7 +42,7 @@ jobs: | |
{{> stepTestYml jobRunFlags=allFlags }} | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
if: steps.create-check.outputs.check-id && always() | ||
with: | ||
token: $\{{ secrets.GITHUB_TOKEN }} | ||
conclusion: $\{{ job.status }} | ||
|
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 |
---|---|---|
|
@@ -452,7 +452,7 @@ jobs: | |
run: npm run postlint --ignore-scripts | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
if: steps.create-check.outputs.check-id && always() | ||
with: | ||
token: \${{ secrets.GITHUB_TOKEN }} | ||
conclusion: \${{ job.status }} | ||
|
@@ -521,7 +521,7 @@ jobs: | |
run: npm test --ignore-scripts | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
if: steps.create-check.outputs.check-id && always() | ||
with: | ||
token: \${{ secrets.GITHUB_TOKEN }} | ||
conclusion: \${{ job.status }} | ||
|
@@ -2102,7 +2102,7 @@ jobs: | |
run: npm run postlint --ignore-scripts -ws -iwr --if-present | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
if: steps.create-check.outputs.check-id && always() | ||
with: | ||
token: \${{ secrets.GITHUB_TOKEN }} | ||
conclusion: \${{ job.status }} | ||
|
@@ -2171,7 +2171,7 @@ jobs: | |
run: npm test --ignore-scripts -ws -iwr --if-present | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
if: steps.create-check.outputs.check-id && always() | ||
with: | ||
token: \${{ secrets.GITHUB_TOKEN }} | ||
conclusion: \${{ job.status }} | ||
|
@@ -3775,7 +3775,7 @@ jobs: | |
run: npm run postlint --ignore-scripts -ws -iwr --if-present | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
if: steps.create-check.outputs.check-id && always() | ||
with: | ||
token: \${{ secrets.GITHUB_TOKEN }} | ||
conclusion: \${{ job.status }} | ||
|
@@ -3844,7 +3844,7 @@ jobs: | |
run: npm test --ignore-scripts -ws -iwr --if-present | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
if: steps.create-check.outputs.check-id && always() | ||
with: | ||
token: \${{ secrets.GITHUB_TOKEN }} | ||
conclusion: \${{ job.status }} | ||
|