Files
web/.github/workflows/stale.yml
T
RD WebDesign e548f139c8 Add never-stale label to stale.yml
Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
2022-12-09 16:24:39 -03:00

27 lines
732 B
YAML

name: Mark stale issues
on:
schedule:
- cron: '0 8 * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v6.0.1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 30
days-before-close: 5
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days.'
stale-issue-label: 'stale'
exempt-issue-labels: 'internal, Fixed In Next Release, Bug, never-stale'
exempt-all-issue-assignees: true
operations-per-run: 300
close-issue-reason: 'not_planned'