mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
642 B
20 lines
642 B
name: "Close stale issues"
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
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: 'keep open,v4.x,in progress'
|
|
days-before-stale: 90
|
|
days-before-close: 30
|
|
operations-per-run: 100
|