Skip to content

Close stale issues #1387

Close stale issues

Close stale issues #1387

Workflow file for this run

name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
# see: https://github.com/actions/stale
jobs:
stale:
runs-on: ubuntu-latest
if: github.repository_owner == 'wildfly'
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: 'There has been no activity on this PR for 45 days. It will be auto-closed after 90 days.'
close-pr-message: 'There has been no activity on this PR for 90 days and it has been closed automatically.'
days-before-stale: 45
days-before-close: 90