2024-08-09 10:20:30 -07:00
|
|
|
name: Stale Check
|
|
|
|
on:
|
|
|
|
workflow_dispatch: {}
|
|
|
|
schedule:
|
2024-08-12 11:06:48 -07:00
|
|
|
- cron: '16 22 * * *'
|
2024-08-09 10:20:30 -07:00
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
|
|
stale:
|
2024-08-12 11:06:48 -07:00
|
|
|
if: github.repository_owner == 'prometheus' || github.repository_owner == 'prometheus-community' # Don't run this workflow on forks.
|
2024-08-09 10:20:30 -07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-08-12 11:06:48 -07:00
|
|
|
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
|
2024-08-09 10:20:30 -07:00
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# opt out of defaults to avoid marking issues as stale and closing them
|
|
|
|
# https://github.com/actions/stale#days-before-close
|
|
|
|
# https://github.com/actions/stale#days-before-stale
|
|
|
|
days-before-stale: -1
|
|
|
|
days-before-close: -1
|
|
|
|
# Setting it to empty string to skip comments.
|
|
|
|
# https://github.com/actions/stale#stale-pr-message
|
|
|
|
# https://github.com/actions/stale#stale-issue-message
|
|
|
|
stale-pr-message: ''
|
|
|
|
stale-issue-message: ''
|
|
|
|
operations-per-run: 30
|
|
|
|
# override days-before-stale, for only marking the pull requests as stale
|
|
|
|
days-before-pr-stale: 60
|
|
|
|
stale-pr-label: stale
|
|
|
|
exempt-pr-labels: keepalive
|