2024-07-05 15:47:14 +02:00
|
|
|
name: 'Close stale issues'
|
|
|
|
on:
|
2024-07-08 15:15:10 +02:00
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * 0,3' # at midnight UTC every Sunday and Tuesday
|
2024-07-05 15:47:14 +02:00
|
|
|
jobs:
|
|
|
|
stale:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
steps:
|
|
|
|
- uses: actions/stale@v9
|
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
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. Thank you
|
|
|
|
for your contributions.
|
|
|
|
days-before-issue-stale: 180
|
|
|
|
days-before-issue-close: 180
|
|
|
|
stale-issue-label: "stale"
|
|
|
|
exempt-issue-labels: "kind/feature,kind/enhancement"
|
|
|
|
|