2024-07-28 13:39:37 +02:00
|
|
|
name: lime-stale-issues
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 0 * * *"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
stale-issues:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
steps:
|
|
|
|
- uses: actions/stale@v9.0.0
|
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2024-07-30 14:42:37 +02:00
|
|
|
days-before-issue-stale: 90
|
|
|
|
days-before-issue-close: 10
|
2024-08-01 19:57:10 +02:00
|
|
|
stale-issue-message: "This issue has been marked as stale. If there is no activity within the next 10 days, this issue will be closed."
|
2024-07-28 13:39:37 +02:00
|
|
|
close-issue-message: "This issue has been closed as stale."
|
|
|
|
days-before-pr-stale: -1
|
|
|
|
days-before-pr-close: -1
|
|
|
|
remove-issue-stale-when-updated: true
|
2024-07-30 14:45:32 +02:00
|
|
|
exempt-issue-labels: "priority - low,priority - medium,priority - high,priority - urgent,documentation,enhancement"
|