github.com/nektos/act@v0.2.63/.github/workflows/stale.yml (about)

     1  name: 'Close stale issues'
     2  on:
     3    schedule:
     4      - cron: '0 0 * * *'
     5  
     6  jobs:
     7    stale:
     8      name: Stale
     9      runs-on: ubuntu-latest
    10      steps:
    11        - uses: actions/stale@v9
    12          with:
    13            repo-token: ${{ secrets.GITHUB_TOKEN }}
    14            stale-issue-message: 'Issue is stale and will be closed in 14 days unless there is new activity'
    15            stale-pr-message: 'PR is stale and will be closed in 14 days unless there is new activity'
    16            stale-issue-label: 'stale'
    17            exempt-issue-labels: 'stale-exempt,kind/feature-request'
    18            stale-pr-label: 'stale'
    19            exempt-pr-labels: 'stale-exempt'
    20            remove-stale-when-updated: 'True'
    21            operations-per-run: 500
    22            days-before-stale: 180
    23            days-before-close: 14