Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/issue-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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: |
Expand Down