diff options
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> { |