From b3b2a68bcf72423cb38eab6f08cf729cf4e7411d Mon Sep 17 00:00:00 2001 From: Sourcegraph Date: Wed, 23 Feb 2022 16:20:45 +0000 Subject: [PATCH] workflows: add pr-auditor and test plans to PR templates --- .github/PULL_REQUEST_TEMPLATE.md | 9 +++++++++ .github/workflows/pr-auditor.yml | 19 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/workflows/pr-auditor.yml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..a47c164 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,9 @@ +### Test plan + + diff --git a/.github/workflows/pr-auditor.yml b/.github/workflows/pr-auditor.yml new file mode 100644 index 0000000..3edc274 --- /dev/null +++ b/.github/workflows/pr-auditor.yml @@ -0,0 +1,19 @@ +name: pr-auditor +on: + pull_request: + types: [ closed, edited, opened ] + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: { repository: 'sourcegraph/sourcegraph' } + - uses: actions/setup-go@v2 + with: { go-version: '1.17' } + + - run: ./dev/pr-auditor/check-pr.sh + env: + GITHUB_EVENT_PATH: ${{ env.GITHUB_EVENT_PATH }} + GITHUB_TOKEN: ${{ secrets.CODENOTIFY_GITHUB_TOKEN }} + GITHUB_RUN_URL: https://github.com/sourcegraph/infrastructure/actions/runs/${{ github.run_id }}