From d77bc63133cd12c670325c13d857df883bfc8783 Mon Sep 17 00:00:00 2001 From: ligi Date: Thu, 19 Sep 2024 23:49:28 +0200 Subject: [PATCH] Add comment after PR was submitted (#5877) --- .github/workflows/pr_intro_comment.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/pr_intro_comment.yml diff --git a/.github/workflows/pr_intro_comment.yml b/.github/workflows/pr_intro_comment.yml new file mode 100644 index 000000000000..02ca25f7dd29 --- /dev/null +++ b/.github/workflows/pr_intro_comment.yml @@ -0,0 +1,12 @@ +on: [pull_request_target] +jobs: + comment_on_pr: + runs-on: ubuntu-latest + name: Comment after PR is submitted + steps: + - name: Comment PR + uses: thollander/actions-comment-pull-request@v2 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + message: | + You successfully submitted a PR! Due to the amount of PRs coming in: we will only look at PRs that the CI is happy with. We can also not hold your hand getting the CI green - just look how others that where merged did it and RTFM. So as long as there is any CI check that reports an error - no human will look at this. You might be able to ask for some support after supporting the project - e.g. by sending funds to lists.eth. When you fixed things after a requested change - then you also need to (re-)request a review. \ No newline at end of file