diff --git a/.github/workflows/pr-auditor.yml b/.github/workflows/pr-auditor.yml deleted file mode 100644 index c338878bd9..0000000000 --- a/.github/workflows/pr-auditor.yml +++ /dev/null @@ -1,23 +0,0 @@ -# See https://docs.sourcegraph.com/dev/background-information/ci#pr-auditor -name: pr-auditor -on: - pull_request_target: - types: [ closed, edited, opened, synchronize, ready_for_review ] - - -jobs: - check-pr: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - repository: 'sourcegraph/devx-service' - token: ${{ secrets.PR_AUDITOR_TOKEN }} - - uses: actions/setup-go@faf52423ec0d44c58f68e83b614bfcd99dded66f - with: { go-version-file: '.tool-versions' } - - - run: 'go run ./cmd/pr-auditor' - env: - GITHUB_EVENT_PATH: ${{ env.GITHUB_EVENT_PATH }} - GITHUB_TOKEN: ${{ secrets.PR_AUDITOR_TOKEN }} - GITHUB_RUN_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}