Skip to content

Commit 0d1eb88

Browse files
committed
Remove ESLint from required checks
Dependabot does not upload eslint alerts, so the check is never created.
1 parent 63eb7bb commit 0d1eb88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/script/update-required-checks.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ fi
2727

2828
echo "Getting checks for $GITHUB_SHA"
2929

30-
# Ignore any checks with "https://", CodeQL, LGTM, and Update checks.
31-
CHECKS="$(gh api repos/github/codeql-action/commits/"${GITHUB_SHA}"/check-runs --paginate | jq --slurp --compact-output --raw-output '[.[].check_runs.[] | select(.conclusion != "skipped") | .name | select(contains("https://") or . == "CodeQL" or . == "Dependabot" or . == "check-expected-release-files" or contains("Update") or contains("update") or contains("test-setup-python-scripts") | not)] | unique | sort')"
30+
# Ignore any checks with "https://", CodeQL, LGTM, Update, and ESLint checks.
31+
CHECKS="$(gh api repos/github/codeql-action/commits/"${GITHUB_SHA}"/check-runs --paginate | jq --slurp --compact-output --raw-output '[.[].check_runs.[] | select(.conclusion != "skipped") | .name | select(contains("https://") or . == "CodeQL" or . == "Dependabot" or . == "check-expected-release-files" or contains("Update") or contains("ESLint") or contains("update") or contains("test-setup-python-scripts") | not)] | unique | sort')"
3232

3333
echo "$CHECKS" | jq
3434

0 commit comments

Comments
 (0)