From fd6bbc7e0112295b4fb1521b137fcce90686c0b8 Mon Sep 17 00:00:00 2001 From: MantisClone Date: Mon, 24 Mar 2025 15:46:35 -0400 Subject: [PATCH] chore: add pr-comments workflow with default messages --- .github/workflows/pr-comments.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/pr-comments.yml diff --git a/.github/workflows/pr-comments.yml b/.github/workflows/pr-comments.yml new file mode 100644 index 0000000..da81854 --- /dev/null +++ b/.github/workflows/pr-comments.yml @@ -0,0 +1,15 @@ +name: PR Comments + +on: + pull_request_target: + types: [opened, ready_for_review, closed] + +jobs: + pr-comments: + name: PR Comments + uses: RequestNetwork/auto-comments/.github/workflows/pr-auto-comments.yml@main + with: + org_name: "RequestNetwork" + # Using default comments from the auto-comments workflow + secrets: + token: ${{ secrets.GH_PAT_AUTO_COMMENTS }}