We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 381e905 commit 715dd23Copy full SHA for 715dd23
.github/workflows/no-response.yml
@@ -0,0 +1,26 @@
1
+name: 🥺 No Response
2
+
3
+on:
4
+ issue_comment:
5
+ types: [created]
6
+ schedule:
7
+ # Schedule for five minutes after the hour, every hour
8
+ - cron: "5 * * * *"
9
10
+jobs:
11
+ noResponse:
12
+ if: github.repository == 'remix-run/react-router'
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: 🥺 Handle Ghosting
17
+ uses: lee-dohm/[email protected]
18
+ with:
19
+ closeComment: >
20
+ This issue has been automatically closed because we haven't received a
21
+ response from the original author 🙈. This automation helps keep the issue
22
+ tracker clean from issues that are unactionable. Please reach out if you
23
+ have more information for us! 🙂
24
+ daysUntilClose: 10
25
+ responseRequiredLabel: needs-response
26
+ token: ${{ github.token }}
0 commit comments