/ .github / workflows / stale.yml
stale.yml
 1  name: 'Stalebot'
 2  on:
 3    schedule:
 4      - cron: '30 1 * * *'
 5  
 6  jobs:
 7    makestale:
 8      runs-on: ubuntu-slim
 9      steps:
10        - uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
11          with:
12            any-of-labels: 'proposal,information-needed'
13            stale-pr-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 10 days.'
14            days-before-stale: 30
15            days-before-close: 10