1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Merge pull request #1510 from Unleash/botconfig

Add Stalebot and No-Response Action Config
This commit is contained in:
sighphyre 2022-04-20 12:17:13 +02:00 committed by GitHub
commit 28da39fd2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

23
.github/stale.yml vendored Normal file
View File

@ -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
.github/workflows/flag-no-response.yaml vendored Normal file
View File

@ -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 }}