From adffb280f885b1c2140473c73825c2f96e177528 Mon Sep 17 00:00:00 2001 From: jonathansadowski Date: Wed, 15 Mar 2023 17:20:13 -0500 Subject: [PATCH] Remove broken workflow for bypassing changelog-only PRs (#37216) --- .../status-check-bypass-changelog-only.yml | 56 ------------------- 1 file changed, 56 deletions(-) delete mode 100644 .github/workflows/status-check-bypass-changelog-only.yml diff --git a/.github/workflows/status-check-bypass-changelog-only.yml b/.github/workflows/status-check-bypass-changelog-only.yml deleted file mode 100644 index a717ab5e1af..00000000000 --- a/.github/workflows/status-check-bypass-changelog-only.yml +++ /dev/null @@ -1,56 +0,0 @@ -# Duplicate workflow that returns success for this check when there is no relevant file change. See https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks - -name: Status Check Bypass for Changelog Only Changes -on: - pull_request: - paths: - - '!**' - - '**/changelog/**' - -jobs: - bypass-lint: - runs-on: ubuntu-latest - name: "Lint and Test JS" - steps: - - run: 'echo "No build required"' - bypass-7-4-latest: - runs-on: ubuntu-latest - name: "PHP 7.4 WP latest" - steps: - - run: 'echo "No build required"' - bypass-8-0-latest: - runs-on: ubuntu-latest - name: "PHP 8.0 WP latest" - steps: - - run: 'echo "No build required"' - bypass-api-tests: - runs-on: ubuntu-latest - name: "Runs API tests." - steps: - - run: 'echo "No build required"' - bypass-k6: - runs-on: ubuntu-latest - name: "Runs k6 Performance tests" - steps: - - run: 'echo "No build required"' - bypass-sniff: - runs-on: ubuntu-latest - name: "Code sniff (PHP 7.4, WP Latest)" - steps: - - run: 'echo "No build required"' - bypass-changelogger-use: - runs-on: ubuntu-latest - name: "Changelogger use" - steps: - - run: 'echo "No build required"' - bypass-e2e: - runs-on: ubuntu-latest - name: "Runs E2E tests." - steps: - - run: 'echo "No build required"' - bypass-pr-highlight: - runs-on: ubuntu-latest - name: "Check pull request changes to highlight" - steps: - - run: 'echo "No build required"' -