From 84955d65d2069e255007b9f3cd2b4939d7f2dabe Mon Sep 17 00:00:00 2001 From: MantisClone Date: Sat, 22 Mar 2025 13:48:51 -0400 Subject: [PATCH] feat: add default message workflow --- .github/workflows/integration-test.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 5ff7f8b..f6e1a09 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -5,8 +5,9 @@ on: types: [opened, ready_for_review, closed] jobs: - pr-comments: - name: PR Comments + # Test with custom test messages + pr-comments-custom: + name: PR Comments - Custom Messages uses: RequestNetwork/auto-comments/.github/workflows/pr-auto-comments.yml@main with: org_name: "RequestNetwork" @@ -119,3 +120,13 @@ jobs: Thank you for contributing to our project! This test comment was triggered by the integration test workflow. secrets: token: ${{ secrets.GH_PAT_AUTO_COMMENTS }} + + # Test using default messages + pr-comments-default: + name: PR Comments - Default Messages + uses: RequestNetwork/auto-comments/.github/workflows/pr-auto-comments.yml@main + with: + org_name: "RequestNetwork" + # Using default messages to verify they work correctly + secrets: + token: ${{ secrets.GH_PAT_AUTO_COMMENTS }}