From a9fe065c14988f2cb7500d344653f46e815fbe25 Mon Sep 17 00:00:00 2001 From: Matt Brophy Date: Wed, 27 May 2026 12:06:01 -0400 Subject: [PATCH 1/2] Add repo chekcout to issues check workflow --- .github/workflows/issue-checks.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/issue-checks.yml b/.github/workflows/issue-checks.yml index b3767ef074..88bd5d3aef 100644 --- a/.github/workflows/issue-checks.yml +++ b/.github/workflows/issue-checks.yml @@ -15,6 +15,9 @@ jobs: if: github.repository == 'remix-run/react-router' && github.event.label.name == 'no-reproduction' runs-on: ubuntu-latest steps: + - name: Checkout repo + uses: actions/checkout@v6 + - name: Close issue env: GH_TOKEN: ${{ github.token }} @@ -36,6 +39,9 @@ jobs: if: github.repository == 'remix-run/react-router' && github.event.label.name == 'support' runs-on: ubuntu-latest steps: + - name: Checkout repo + uses: actions/checkout@v6 + - name: Close issue env: GH_TOKEN: ${{ github.token }} From a256d494ae39212f4cc035c6ea680644559aadd7 Mon Sep 17 00:00:00 2001 From: Matt Brophy Date: Wed, 27 May 2026 12:09:30 -0400 Subject: [PATCH 2/2] Update issue closure comments for clarity --- .github/workflows/issue-checks.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/issue-checks.yml b/.github/workflows/issue-checks.yml index 88bd5d3aef..eeba9f7ea7 100644 --- a/.github/workflows/issue-checks.yml +++ b/.github/workflows/issue-checks.yml @@ -22,7 +22,7 @@ jobs: env: GH_TOKEN: ${{ github.token }} COMMENT_BODY: | - To align with our new [Open Governance](https://remix.run/blog/rr-governance) model, we are now requiring that all issues have a [**minimal** and **runnable** reproduction](https://github.com/remix-run/react-router/blob/main/GOVERNANCE.md#bugissue-process). This should help us to focus on actionable issues and be more responsive to newly filed issues. + :wave: @${{ github.event.issue.user.login }}, to align with our new [Open Governance](https://remix.run/blog/rr-governance) model, we are now requiring that all issues have a [**minimal** and **runnable** reproduction](https://github.com/remix-run/react-router/blob/main/GOVERNANCE.md#bugissue-process). This should help us to focus on actionable issues and be more responsive to newly filed issues. To get this re-opened, please add a reproduction to the Issue description and tag `@brophdawg11` or `@brookslybrand` in a comment so we can re-open. @@ -46,13 +46,9 @@ jobs: env: GH_TOKEN: ${{ github.token }} COMMENT_BODY: | - :wave: @${{ github.event.issue.user.login }}, we use the issue tracker exclusively for bug reports - and feature requests. However, this issue appears to be a support request. + :wave: @${{ github.event.issue.user.login }}, we use the issue tracker exclusively for bug reports and feature requests. However, this issue appears to be a support request. - For usage questions, please use [Stack Overflow](https://stackoverflow.com/questions/tagged/react-router) - or [Discord](https://rmx.as/discord) where there are a lot more people ready to help you out, or - [post a new question](https://github.com/remix-run/react-router/discussions/new?category=q-a) in the - Discussions tab of this repository. + For usage questions, please use [Stack Overflow](https://stackoverflow.com/questions/tagged/react-router) or [Discord](https://rmx.as/discord) where there are a lot more people ready to help you out, or [post a new question](https://github.com/remix-run/react-router/discussions/new?category=q-a) in the Discussions tab of this repository. Please feel free to clarify your issue if you think it was closed prematurely. run: |