mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-01-27 09:43:56 +00:00
4cc7d108e3
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22 lines
618 B
YAML
22 lines
618 B
YAML
name: 'Close stale issues and PRs'
|
|
on:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
stale-issue-message: 'This issue has been marked as stale because it has been open for 90 days with no activity. This thread will be automatically closed in 30 days if no further activity occurs.'
|
|
exempt-issue-labels: 'lifecycle/frozen'
|
|
days-before-stale: 90
|
|
days-before-close: 30
|
|
enable-statistics: false
|
|
operations-per-run: 500
|