From 7e7e7c08a1694df0b24f7117fbd8a457a1d7a374 Mon Sep 17 00:00:00 2001 From: Jean-Hadrien Chabran Date: Wed, 31 Jul 2024 14:10:06 +0200 Subject: [PATCH] Revert "chore(ci): post instructions for PR sections in a comment" (#64187) Reverts sourcegraph/sourcegraph#64176 Test-plan: CI --- .github/PULL_REQUEST_TEMPLATE.md | 5 +++++ .github/workflows/pr-guides.yml | 18 ------------------ 2 files changed, 5 insertions(+), 18 deletions(-) delete mode 100644 .github/workflows/pr-guides.yml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0ae1d5c2e9e..cf56b2130e8 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,9 @@ + ## Test plan + + ## Changelog + + diff --git a/.github/workflows/pr-guides.yml b/.github/workflows/pr-guides.yml deleted file mode 100644 index 10a7d566602..00000000000 --- a/.github/workflows/pr-guides.yml +++ /dev/null @@ -1,18 +0,0 @@ -on: - pull_request_target: - types: [opened] - -jobs: - print-instructions: - name: "Comment with PR instructions" - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v7 - with: - script: | - await github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: `:bulb: Learn more about each section: [PR description tips](https://www.notion.so/sourcegraph/Write-a-good-pull-request-description-610a7fd3e613496eb76f450db5a49b6e), [Test Plan](https://docs-legacy.sourcegraph.com/dev/background-information/testing_principles) and [Changelog](https://www.notion.so/sourcegraph/Writing-a-changelog-entry-dd997f411d524caabf0d8d38a24a878c).`, - })