From 90bf43e83f6efe0e00ef1ecb5acdb4ace4bbfce7 Mon Sep 17 00:00:00 2001 From: MantisClone Date: Mon, 24 Mar 2025 15:41:40 -0400 Subject: [PATCH 1/2] 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 0000000000..da8185425a --- /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 }} From e0fefe1a26b70579ee06d85d0107a80c8be83106 Mon Sep 17 00:00:00 2001 From: MantisClone Date: Tue, 25 Mar 2025 12:15:29 -0400 Subject: [PATCH 2/2] fix: format --- .github/workflows/pr-comments.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-comments.yml b/.github/workflows/pr-comments.yml index da8185425a..ce41e4b9c8 100644 --- a/.github/workflows/pr-comments.yml +++ b/.github/workflows/pr-comments.yml @@ -9,7 +9,7 @@ jobs: name: PR Comments uses: RequestNetwork/auto-comments/.github/workflows/pr-auto-comments.yml@main with: - org_name: "RequestNetwork" + org_name: 'RequestNetwork' # Using default comments from the auto-comments workflow secrets: token: ${{ secrets.GH_PAT_AUTO_COMMENTS }}