From c6290f0da5584f1eea7b64479eaf57f0b229b6f3 Mon Sep 17 00:00:00 2001 From: kodster28 Date: Tue, 18 Feb 2025 11:01:33 -0600 Subject: [PATCH] [GH] Review comment wording --- .github/workflows/pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 8a1a8f45af0cd8c..c3ccfb48be2f927 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -29,14 +29,14 @@ jobs: env: GH_TOKEN: ${{ secrets.HOLOPIN_LABELER }} - name: External comment - run: gh pr comment "$NUMBER" --body "Howdy and thanks for contributing to our repo.\n\nWe generally get around to reviewing new, external PRs within **2 weeks**.\n\nIf it's been longer than then without any movement, try tagging the **Assignees** in a comment." + run: gh pr comment "$NUMBER" --body "Howdy and thanks for contributing to our repo. We review new, external PRs within **2 weeks**. If it's been longer than then without any movement, tag the PR **Assignees** in a comment." if: steps.check_if_contributor_is_external.outputs.is_external == 'true' env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_REPO: ${{ github.repository }} NUMBER: ${{ github.event.pull_request.number }} - name: Internal comment - run: gh pr comment "$NUMBER" --body "Howdy and thanks for contributing to our repo.\n\nWe generally get around to reviewing internal PRs with **1 week**. If it's something urgent or has been sitting without any movement for more than that, start a thread in the `Developer Docs` space internally." + run: gh pr comment "$NUMBER" --body "Howdy and thanks for contributing to our repo. We review internal PRs with **1 week**. If it's something urgent or has been sitting without a comment, start a thread in the *Developer Docs* space internally." if: steps.check_if_contributor_is_external.outputs.is_external == 'false' env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}