Skip to content

Commit

Permalink
chore: add no-response workflow (remix-run#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey committed Dec 12, 2022
1 parent 968747c commit fc31e40
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/no-response.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 🥺 No Response

on:
schedule:
# Schedule for five minutes after the hour, every hour
- cron: "5 * * * *"

permissions:
issues: write
pull-requests: write

jobs:
stale:
if: github.repository == 'remix-run/react-router-website'
runs-on: ubuntu-latest
steps:
- name: 🥺 Handle Ghosting
uses: actions/stale@v6
with:
close-issue-message: >
This issue has been automatically closed because we haven't received a
response from the original author 🙈. This automation helps keep the issue
tracker clean from issues that aren't actionable. Please reach out if you
have more information for us! 🙂
close-pr-message: >
This PR has been automatically closed because we haven't received a
response from the original author 🙈. This automation helps keep the issue
tracker clean from PRs that aren't actionable. Please reach out if you
want to resume the work on this PR! 🙂
stale-issue-label: needs-response
stale-pr-label: needs-response

0 comments on commit fc31e40

Please sign in to comment.