19 lines
600 B
YAML
19 lines
600 B
YAML
name: 'Close stale issues and PRs'
|
|
on:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Close Stale Issues
|
|
uses: actions/stale@v3.0.18
|
|
with:
|
|
# Token for the repository. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`.
|
|
# repo-token: ${{ github.token }}
|
|
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
|
|
days-before-stale: 30
|
|
days-before-close: 5
|