mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-24 03:58:12 -08:00
21 lines
795 B
YAML
21 lines
795 B
YAML
name: "Stale issues"
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
jobs:
|
|
stale:
|
|
timeout-minutes: 1
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v8
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: 'This issue is stale because it has been labeled with inactivity.'
|
|
stale-pr-message: 'This PR is stale because it has been labeled with inactivity.'
|
|
exempt-issue-labels: 'lifecycle/frozen,lifecycle/active,priority/critical-urgent,priority/important-soon,priority/important-longterm,priority/backlog,priority/awaiting-more-evidence'
|
|
exempt-pr-labels: 'lifecycle/active'
|
|
stale-pr-label: 'lifecycle/stale'
|
|
stale-issue-label: 'lifecycle/stale'
|
|
days-before-stale: 60
|
|
days-before-close: 20
|