From f6a6a258100b7fc3a857a3993a8efe84717ecebe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mochol=C3=AD?= Date: Thu, 6 Jan 2022 09:01:45 +0100 Subject: [PATCH] Remove the "Verify linked issue" bot (#11338) --- .../workflows/ci_verify_pr_contains_issue.yaml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/ci_verify_pr_contains_issue.yaml diff --git a/.github/workflows/ci_verify_pr_contains_issue.yaml b/.github/workflows/ci_verify_pr_contains_issue.yaml deleted file mode 100644 index 1c92c8280a..0000000000 --- a/.github/workflows/ci_verify_pr_contains_issue.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: Verify Issue Linking - -on: - pull_request: - branches: [master] - types: [opened, edited, reopened, ready_for_review] - check_run: - -jobs: - verify_linked_issue: - runs-on: ubuntu-latest - name: Ensure Pull Request has a linked issue. - if: github.event.pull_request.draft == false - steps: - - name: Verify Linked Issue - uses: hattan/verify-linked-issue-action@v1.1.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}