mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 06:14:14 +00:00
misc: switched to stale action
This commit is contained in:
parent
34baf8a354
commit
7b7d5db796
2 changed files with 24 additions and 6 deletions
6
.github/no-response.yml
vendored
6
.github/no-response.yml
vendored
|
@ -1,6 +0,0 @@
|
|||
daysUntilClose: 14
|
||||
responseRequiredLabel: "status/waiting on feedback"
|
||||
closeComment: >
|
||||
This issue has been automatically closed because there has been no response
|
||||
after requesting feedback. Please feel free to re-open this issue if the
|
||||
scenario still exists and provide a comment with more information.
|
24
.github/workflows/stale-check.yml
vendored
Normal file
24
.github/workflows/stale-check.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
name: Stale Check
|
||||
|
||||
on:
|
||||
issue_comment:
|
||||
schedule:
|
||||
- cron: 0 2 * * *
|
||||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: ubuntu-20.04
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Process Stale Issues
|
||||
uses: actions/stale@v4.0.0
|
||||
with:
|
||||
stale-issue-message: >
|
||||
This issue is stale because it has been open 30 days with no activity.
|
||||
Please add a comment describing the reason to keep this issue open.
|
||||
days-before-stale: 30
|
||||
days-before-close: 5
|
||||
exempt-issue-labels: 'enhancement,keep'
|
||||
|
Loading…
Reference in a new issue