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