selling-partner-api-models/.github/workflows/closing_inactive_issues.yml

31 lines
1.1 KiB
YAML
Raw Normal View History

2024-05-09 15:21:53 +08:00
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests
2022-05-04 05:54:07 +08:00
on:
schedule:
2024-05-09 15:21:53 +08:00
- cron: '0 0 * * *'
2022-05-04 05:54:07 +08:00
jobs:
2024-05-09 15:21:53 +08:00
stale:
2022-05-04 05:54:07 +08:00
2024-05-09 15:21:53 +08:00
runs-on: ubuntu-latest
permissions:
issues: write
contents: write
2022-05-04 05:54:07 +08:00
2024-05-09 15:21:53 +08:00
steps:
- uses: actions/stale@v5
with:
days-before-issue-stale: 180
days-before-issue-close: 3
close-issue-message: 'closed for inactivity'
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This is a very old issue that is probably not getting as much attention as it deserves. We encourage you to check if this is still an issue after the latest release and if you find that this is still a problem, please feel free to open a new issue and make a reference to this one.'
stale-issue-label: 'closing soon'
minimum-upvotes-to-exempt: 10
operations-per-run: 1000