Add permissions block to workflow
This commit is contained in:
parent
0fb78380f8
commit
06d4e82bd2
1 changed files with 3 additions and 1 deletions
4
.github/workflows/update-required-checks.yml
vendored
4
.github/workflows/update-required-checks.yml
vendored
|
|
@ -22,13 +22,15 @@ jobs:
|
|||
run: echo "$GITHUB_CONTEXT"
|
||||
|
||||
- name: Update checks
|
||||
env:
|
||||
GITHUB_TOKEN: "${{ secrets.CODEQL_CI_TOKEN }}"
|
||||
run: |
|
||||
# Update the required checks based on the current branch.
|
||||
# Typically, this will be main.
|
||||
echo "Getting checks for $GITHUB_SHA"
|
||||
|
||||
# Ignore any checks with "https://", CodeQL, LGTM, and Update checks.
|
||||
CHECKS="$(gh api repos/github/codeql-action/commits/${GITHUB_SHA}/check-runs --paginate | jq --slurp --compact-output --raw-output '[.[].check_runs | .[].name | select(contains("https://") or . == "CodeQL" or . == "LGTM.com" or contains("Update") | not)] | sort')"
|
||||
CHECKS="$(gh api repos/github/codeql-action/commits/${GITHUB_SHA}/check-runs --paginate | jq --slurp --compact-output --raw-output '[.[].check_runs | .[].name | select(contains("https://") or . == "CodeQL" or . == "LGTM.com" or contains("Update") or contains("update-") | not)] | sort')"
|
||||
|
||||
echo "::group::New Checks"
|
||||
echo "$CHECKS" | jq
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue