Switched stale to workflow

This commit is contained in:
Tomaae 2022-08-20 02:52:37 +02:00
parent 9667dcc171
commit e3f7073219
No known key found for this signature in database
GPG key ID: 8360BBD8A381D1C0
2 changed files with 19 additions and 46 deletions

46
.github/stale.yml vendored
View file

@ -1,46 +0,0 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 14
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
onlyLabels: []
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
- planned
- help wanted
# Set to true to ignore issues in a project (defaults to false)
exemptProjects: true
# Set to true to ignore issues in a milestone (defaults to false)
exemptMilestones: true
# Set to true to ignore issues with an assignee (defaults to false)
exemptAssignees: false
# Label to use when marking an issue as stale
staleLabel: stale
# Comment to post when marking an issue as stale. Set to `false` to disable
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.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
# Handle pull requests a little bit faster and with an adjusted comment.
pulls:
daysUntilStale: 30
exemptProjects: false
markComment: >
There hasn't been any activity on this pull request recently. This pull
request has been automatically marked as stale because of that and will
be closed if no further activity occurs within 7 days.
Thank you for your contributions.

19
.github/workflows/stale.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: 'Stale'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
name: Stale
runs-on: ubuntu-latest
steps:
- uses: "actions/stale@v5.1.1"
with:
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.'
stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.'
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
days-before-stale: 14
days-before-close: 7
exempt-issue-labels: 'pinned,security,planned,help wanted'
exempt-pr-labels: 'pinned,security,planned,help wanted'