49 lines
2.0 KiB
YAML
49 lines
2.0 KiB
YAML
name: 'Close stale Issues and Pull Requests'
|
|
|
|
env:
|
|
STALE_AFTER_INACTIVE_DAYS: 90
|
|
CLOSE_AFTER_INACTIVE_DAYS: 7
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '1 3 * * 0' # runs every Sunday at 03h01 UTC
|
|
# - cron: '0 * * * *' # runs every hour, for debugging
|
|
jobs:
|
|
stale:
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
if: github.repository == 'geopython/pygeoapi'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: 'actions/stale@v9'
|
|
with:
|
|
# debug-only: true
|
|
operations-per-run: 1000
|
|
enable-statistics: true
|
|
stale-issue-label: stale
|
|
stale-pr-label: stale
|
|
exempt-issue-labels: blocker
|
|
exempt-pr-labels: blocker
|
|
days-before-stale: ${{ env.STALE_AFTER_INACTIVE_DAYS }}
|
|
days-before-close: ${{ env.CLOSE_AFTER_INACTIVE_DAYS }}
|
|
remove-stale-when-updated: true
|
|
stale-issue-message: >
|
|
This Issue has been inactive for ${{env.STALE_AFTER_INACTIVE_DAYS }}
|
|
days. As per [RFC4](https://pygeoapi.io/development/rfc/4), in order
|
|
to manage maintenance burden, it will be automatically closed
|
|
in ${{ env.CLOSE_AFTER_INACTIVE_DAYS }} days.
|
|
stale-pr-message: >
|
|
This Pull Request has been inactive for ${{env.STALE_AFTER_INACTIVE_DAYS }}
|
|
days. As per [RFC4](https://pygeoapi.io/development/rfc/4), in order
|
|
to manage maintenance burden, it will be automatically closed
|
|
in ${{ env.CLOSE_AFTER_INACTIVE_DAYS }} days.
|
|
close-issue-message: >
|
|
As per [RFC4](https://pygeoapi.io/development/rfc/4), this Issue has
|
|
been closed due to there being no activity for more
|
|
than ${{ env.STALE_AFTER_INACTIVE_DAYS }} days.
|
|
close-pr-message: >
|
|
As per [RFC4](https://pygeoapi.io/development/rfc/4), this Pull Request
|
|
has been closed due to there being no activity for more
|
|
than ${{ env.STALE_AFTER_INACTIVE_DAYS }} days.
|