mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
74c1af3fd5
Some checks failed
CI / Go tests (push) Has been cancelled
CI / More Go tests (push) Has been cancelled
CI / Go tests with previous Go version (push) Has been cancelled
CI / UI tests (push) Has been cancelled
CI / Go tests on Windows (push) Has been cancelled
CI / Mixins tests (push) Has been cancelled
CI / Build Prometheus for common architectures (0) (push) Has been cancelled
CI / Build Prometheus for common architectures (1) (push) Has been cancelled
CI / Build Prometheus for common architectures (2) (push) Has been cancelled
CI / Build Prometheus for all architectures (0) (push) Has been cancelled
CI / Build Prometheus for all architectures (1) (push) Has been cancelled
CI / Build Prometheus for all architectures (10) (push) Has been cancelled
CI / Build Prometheus for all architectures (11) (push) Has been cancelled
CI / Build Prometheus for all architectures (2) (push) Has been cancelled
CI / Build Prometheus for all architectures (3) (push) Has been cancelled
CI / Build Prometheus for all architectures (4) (push) Has been cancelled
CI / Build Prometheus for all architectures (5) (push) Has been cancelled
CI / Build Prometheus for all architectures (6) (push) Has been cancelled
CI / Build Prometheus for all architectures (7) (push) Has been cancelled
CI / Build Prometheus for all architectures (8) (push) Has been cancelled
CI / Build Prometheus for all architectures (9) (push) Has been cancelled
CI / Check generated parser (push) Has been cancelled
CI / golangci-lint (push) Has been cancelled
CI / fuzzing (push) Has been cancelled
CI / codeql (push) Has been cancelled
CI / Report status of build Prometheus for all architectures (push) Has been cancelled
CI / Publish main branch artifacts (push) Has been cancelled
CI / Publish release artefacts (push) Has been cancelled
CI / Publish UI on npm Registry (push) Has been cancelled
Signed-off-by: Suraj Nath <9503187+electron0zero@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@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.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
|