diff options
author | 2019-05-27 13:23:28 +0200 | |
---|---|---|
committer | 2019-05-27 19:23:28 +0800 | |
commit | 86b04a632f673dd19fd2b61c515bd4d35054f9e7 (patch) | |
tree | 27907637c6e982dba8bed9e9dfb6a7c83bbc9a5c /source/features/bypass-checks.tsx | |
parent | ef3fce5ccc1c3350eb73e5c0a12ec1c9137d11fb (diff) | |
download | refined-github-86b04a632f673dd19fd2b61c515bd4d35054f9e7.tar.gz refined-github-86b04a632f673dd19fd2b61c515bd4d35054f9e7.tar.zst refined-github-86b04a632f673dd19fd2b61c515bd4d35054f9e7.zip |
Don't bypass GitHub Actions checks (#2080)
Diffstat (limited to '')
-rw-r--r-- | source/features/bypass-checks.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/bypass-checks.tsx b/source/features/bypass-checks.tsx index 5e06b57d..59d11fcd 100644 --- a/source/features/bypass-checks.tsx +++ b/source/features/bypass-checks.tsx @@ -4,7 +4,7 @@ import fetchDom from '../libs/fetch-dom'; async function init(): Promise<void> { // If anything errors, RGH will display the error next to the feature name - await Promise.all(select.all('.merge-status-item [href^="/apps/"]').map(bypass)); + await Promise.all(select.all('.merge-status-item [href^="/apps/"]:not([href^="/apps/github-actions"])').map(bypass)); } async function bypass(check: HTMLElement): Promise<void> { |