-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix a docs typo about `pull-requests` permissions - add write permissions to token in self-test CI - improve self-test CI step that shows `*checks-failed` outputs
- Loading branch information
Showing
3 changed files
with
10 additions
and
6 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 |
---|---|---|
|
@@ -18,6 +18,9 @@ on: | |
|
||
jobs: | ||
test: | ||
permissions: | ||
issues: write | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
2bndy5
Author
Collaborator
|
||
pull-requests: write | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest, macos-latest, windows-latest ] | ||
|
@@ -61,7 +64,8 @@ jobs: | |
# if: steps.linter.outputs.checks-failed > 0 | ||
run: | | ||
echo "some linter checks failed" | ||
echo "${{ steps.linter.outputs.checks-failed }}" | ||
echo "${{ env.checks-failed }}" | ||
echo "total checks-failed: ${{ steps.linter.outputs.checks-failed }}" | ||
echo "clang-tidy checks-failed: ${{ steps.linter.outputs.clang-tidy-checks-failed }}" | ||
echo "clang-format checks-failed: ${{ steps.linter.outputs.clang-format-checks-failed }}" | ||
# for actual deployment | ||
# run: exit 1 |
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
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
self-test CI failed to post comment on push event. This
issues: write
might be insufficient for push events to post comments...