From 1196f8dec08c06a939991443c7d3a1c26975561a Mon Sep 17 00:00:00 2001 From: William Bezuidenhout Date: Thu, 13 Nov 2025 12:56:44 +0000 Subject: [PATCH] remove pr auditor --- .github/workflows/pr-auditor.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/pr-auditor.yml diff --git a/.github/workflows/pr-auditor.yml b/.github/workflows/pr-auditor.yml deleted file mode 100644 index e39ed380..00000000 --- a/.github/workflows/pr-auditor.yml +++ /dev/null @@ -1,28 +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 ] - workflow_dispatch: - -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@v4 - with: { go-version: '1.22' } - - - 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 }} - report_failure: - needs: check-pr - if: ${{ failure() }} - uses: sourcegraph/workflows/.github/workflows/report-job-failure.yml@main - secrets: inherit