1
0
Fork 0
mirror of https://github.com/borgbase/vorta synced 2025-01-03 05:36:19 +00:00

Use maintained stale action (#1737)

This commit is contained in:
Manu 2023-06-25 21:53:29 +01:00 committed by GitHub
parent 92608f9eaa
commit 50be34cabe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 31 deletions

View file

@ -1,8 +1,8 @@
--- ---
name: Feature Request name: Feature Request
about: Suggest an idea for this project. about: Suggest an idea for this project.
title: 'FR: ' title: ''
labels: 'type:enhancement' labels: ''
assignees: '' assignees: ''
--- ---

56
.github/stale.yml vendored
View file

@ -1,33 +1,37 @@
# Number of days of inactivity before an issue becomes stale name: Close stale issues
daysUntilStale: 60 on:
schedule:
- cron: '50 1 * * *'
# Number of days of inactivity before a stale issue is closed jobs:
daysUntilClose: 7 stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
days-before-issue-stale: 60
days-before-pr-stale: -1
days-before-issue-close: 7
# days-before-pr-close: 10
# Issues with these labels will never be considered stale stale-issue-label: "status:stale"
exemptLabels: stale-pr-label: "status:stale"
- "status:idea"
- "status:planning"
- "status:on hold"
- "status:ready"
- "type:bug"
- "type:docs"
- "type:enhancement"
- "type:feature"
- "type:refactor"
- "type:task"
# Label to use when marking an issue as stale exempt-issue-labels: >
staleLabel: "status:stale" status:idea,
status:planning,
status:on hold,
status:ready,
type:bug,
type:docs,
type:enhancement,
type:feature,
type:refactor,
type:task,
# Comment to post when marking an issue as stale. Set to `false` to disable stale-issue-message: >
markComment: >
This issue has been automatically marked as stale because it has not had 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 recent activity. It will be closed if no further activity occurs. Thank you
for your contributions. for your contributions.
close-issue-message: >
# Comment to post when closing a stale issue. Set to `false` to disable This issue was closed because it has been stalled for 7 days with no activity.
closeComment: false
# Limit to only `issues` or `pulls`
only: issues