Files
starter-workflows/.github/workflows/stale.yml
T
2021-06-03 15:07:11 -04:00

20 lines
571 B
YAML

name: Mark stale issues and pull requests
on:
schedule:
- cron: $cron-daily
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
stale-issue-message: 'This issue has become stale and will be closed automatically within a period of time. Sorry about that.'
stale-pr-message: 'This pull request has become stale and will be closed automatically within a period of time. Sorry about that.'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
days-before-stale: 90