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 }}