...

Text file src/helm.sh/helm/v3/.github/workflows/stale-issue-bot.yaml

Documentation: helm.sh/helm/v3/.github/workflows

     1name: "Close stale issues"
     2on:
     3  schedule:
     4  - cron: "0 0 * * *"
     5jobs:
     6  stale:
     7    runs-on: ubuntu-latest
     8    steps:
     9    - uses: actions/stale@v3.0.14
    10      with:
    11        repo-token: ${{ secrets.GITHUB_TOKEN }}
    12        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.'
    13        exempt-issue-labels: 'keep open,v4.x,in progress'
    14        days-before-stale: 90
    15        days-before-close: 30
    16        operations-per-run: 100

View as plain text