1
0
Fork 0
mirror of synced 2024-07-08 16:06:02 +12:00
appwrite/.github/workflows/stale.yml

24 lines
894 B
YAML
Raw Normal View History

2024-04-06 10:00:58 +13:00
name: Mark stale issues
on:
schedule:
- cron: "0 0 * * *" # Midnight Runtime
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
2024-04-16 05:30:42 +12:00
stale-issue-message: "This issue has been labeled as a 'question', indicating that it requires additional information from the requestor. It has been inactive for 7 days. If no further activity occurs, this issue will be closed in 14 days."
2024-04-06 10:00:58 +13:00
stale-issue-label: "stale"
days-before-stale: 7
days-before-close: 14
remove-stale-when-updated: true
close-issue-message: "This issue has been closed due to inactivity. If you still require assistance, please provide the requested information."
close-issue-reason: "not_planned"
2024-04-06 10:00:58 +13:00
operations-per-run: 100
2024-04-16 05:30:42 +12:00
only-labels: "question"