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:
commit
28da39fd2f
23
.github/stale.yml
vendored
Normal file
23
.github/stale.yml
vendored
Normal 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
15
.github/workflows/flag-no-response.yaml
vendored
Normal 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 }}
|
Loading…
Reference in New Issue
Block a user