diff --git a/.github/workflows/issue-checks.yml b/.github/workflows/issue-checks.yml index b3767ef074..eeba9f7ea7 100644 --- a/.github/workflows/issue-checks.yml +++ b/.github/workflows/issue-checks.yml @@ -15,11 +15,14 @@ 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 }} 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. @@ -36,17 +39,16 @@ 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 }} 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: |