12 runs-on: ubuntu-latest
14 - name: Mark and close stale PRs
15 uses: actions/stale@v9
17 stale-pr-message: "This PR is stale because it has been 60 days with no activity. This PR will be automatically closed within 7 days if there is no further activity."
18 close-pr-message: "This PR was closed because it has been stalled for some time with no activity."
19 days-before-stale: -1 # avoid marking issues
20 days-before-pr-stale: 60
21 days-before-close: -1 # avoid closing issues
22 days-before-pr-close: 7
23 exempt-all-pr-assignees: true # avoid stale for all PR with assignees
24 exempt-all-pr-milestones: true # avoid stale for all PR with milestones
25 operations-per-run: 200