mirror of
https://github.com/mickael-menu/zk
synced 2024-11-15 12:12:56 +00:00
f7079be6c0
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tillman Jex <tjex@tjex.net>
32 lines
989 B
YAML
32 lines
989 B
YAML
name: Triage
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- .github/workflows/triage.yml
|
|
schedule:
|
|
# Once every day at midnight UTC
|
|
- cron: "0 0 * * *"
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
days-before-stale: 30
|
|
|
|
days-before-issue-close: 5
|
|
stale-issue-label: 'stale'
|
|
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 in the next 5 days.'
|
|
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
|
|
exempt-issue-labels: 'help wanted,feature request,enhancement,bug'
|
|
|
|
days-before-pr-close: -1
|
|
stale-pr-label: 'stale'
|
|
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity.'
|