Files

28 lines
715 B
YAML
Raw Permalink Normal View History

2021-08-30 16:42:14 -03:00
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
2019-08-08 12:33:45 -05:00
name: Mark stale issues and pull requests
2019-08-06 16:40:40 -07:00
on:
schedule:
2021-06-03 15:07:11 -04:00
- cron: $cron-daily
2019-08-06 16:40:40 -07:00
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
2019-10-16 12:40:14 -07:00
2019-08-06 16:40:40 -07:00
steps:
2020-10-01 15:06:20 -04:00
- uses: actions/stale@v3
2019-08-06 16:40:40 -07:00
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Stale issue message'
2019-08-13 01:53:43 +02:00
stale-pr-message: 'Stale pull request message'
2019-08-06 16:40:40 -07:00
stale-issue-label: 'no-issue-activity'
2019-08-08 12:33:45 -05:00
stale-pr-label: 'no-pr-activity'