wabbajack/.github/workflows/stale.yml

28 lines
1.0 KiB
YAML
Raw Permalink Normal View History

2021-07-29 16:47:16 +00:00
name: Mark Stale
2021-07-29 16:46:43 +00:00
permissions:
issues: write
pull-requests: write
2021-07-29 16:46:43 +00:00
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Close Stale Issues
uses: actions/stale@v5.0.0
with:
2023-03-09 16:52:02 +00:00
stale-issue-message: "Marked as stale due to no interactions in the last 90 days. If the issue still exists, please provide any possibly still needed information or excuse the devs for not getting around to addressing this issue yet. If this issue is still considered unsolved a dev will soon remove the stale tag from this issue."
stale-pr-message: "Marked as stale due to inactivity."
close-issue-message: "Closed due to inactivity. Please create a new issue if this problem has come up again and no dev has reopened this issue after a week of it being marked as closed."
close-pr-message: "Closed due to inactivity."
days-before-stale: 90
operations-per-run: 100
exempt-all-assignees: true