mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-09 16:48:05 +01:00
26 lines
818 B
YAML
26 lines
818 B
YAML
|
---
|
||
|
name: Stale Cleanup
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
schedule:
|
||
|
- cron: '30 1 * * *'
|
||
|
|
||
|
jobs:
|
||
|
stale:
|
||
|
runs-on: ubuntu-latest
|
||
|
permissions:
|
||
|
issues: write
|
||
|
pull-requests: write
|
||
|
steps:
|
||
|
- uses: actions/stale@v6
|
||
|
with:
|
||
|
stale-issue-message: 'Issues become stale 90 days after last activity and are closed 14 days after that. If this issue is still relevant bump it or assign it.'
|
||
|
stale-pr-message: 'Pull Requests become stale 90 days after last activity and are closed 14 days after that. If this pull request is still relevant bump it or assign it.'
|
||
|
days-before-stale: 90
|
||
|
days-before-close: 14
|
||
|
exempt-all-assignees: true
|
||
|
ascending: true
|
||
|
operations-per-run: 250
|
||
|
exempt-issue-labels: 'request,bug,tracking'
|