mirror of
https://github.com/prometheus/prometheus.git
synced 2025-02-21 03:16:00 -08:00
Bumps [actions/stale](https://github.com/actions/stale) from 9.0.0 to 9.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](28ca103628...5bef64f19d
)
---
updated-dependencies:
- dependency-name: actions/stale
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32 lines
1.2 KiB
YAML
32 lines
1.2 KiB
YAML
name: Stale Check
|
|
on:
|
|
workflow_dispatch: {}
|
|
schedule:
|
|
- cron: '16 22 * * *'
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
jobs:
|
|
stale:
|
|
if: github.repository_owner == 'prometheus' || github.repository_owner == 'prometheus-community' # Don't run this workflow on forks.
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
|
|
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
|