name: 'Close stale PRs' on: push: schedule: - cron: '30 1 * * *' jobs: stale: runs-on: ubuntu-latest steps: - uses: actions/stale@v3 with: debug-only: true skip-stale-issue-message: true stale-issue-message: 'Message to comment on stale issues. If none provided, will not mark issues stale' stale-pr-message: 'Message to comment on stale PRs. If none provided, will not mark PRs stale' days-before-stale: 60 days-before-close: 7 days-before-issue-stale: -1 stale-issue-label: Stale stale-pr-label: Stale exempt-all-milestones: false operations-per-run: 30 remove-stale-when-updated: true ascending: false skip-stale-pr-message: false delete-branch: true exempt-all-assignees: false enable-statistics: true