Skip to content

Commit

Permalink
Merge pull request #1510 from Unleash/botconfig
Browse files Browse the repository at this point in the history
Add Stalebot and No-Response Action Config
  • Loading branch information
sighphyre committed Apr 20, 2022
2 parents 6779965 + 9101884 commit 28da39f
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/stale.yml
@@ -0,0 +1,23 @@
limitPerRun: 30
daysUntilStale: 30
daysUntilClose: 7

exemptLabels:
- pinned
- security
- "[Status] Maybe Later"

exemptAssignees: true

staleLabel: wontfix

pulls:
markComment: >
This pull request has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
issues:
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
15 changes: 15 additions & 0 deletions .github/workflows/flag-no-response.yaml
@@ -0,0 +1,15 @@
name: No Response

on:
issue_comment:
types: [created]
schedule:
- cron: '5 * * * *'

jobs:
noResponse:
runs-on: ubuntu-latest
steps:
- uses: lee-dohm/no-response@v0.5.0
with:
token: ${{ github.token }}

0 comments on commit 28da39f

Please sign in to comment.