github.com/systematiccaos/gorm@v1.22.6/.github/workflows/stale.yml (about) 1 name: "Stale" 2 on: 3 schedule: 4 - cron: "0 2 * * *" 5 6 jobs: 7 stale: 8 runs-on: ubuntu-latest 9 env: 10 ACTIONS_STEP_DEBUG: true 11 steps: 12 - name: Close Stale Issues 13 uses: actions/stale@v4 14 with: 15 repo-token: ${{ secrets.GITHUB_TOKEN }} 16 stale-issue-message: "This issue has been automatically marked as stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days" 17 days-before-stale: 60 18 days-before-close: 30 19 stale-issue-label: "status:stale" 20 exempt-issue-labels: 'type:feature,type:with reproduction steps,type:has pull request' 21 stale-pr-label: 'status:stale' 22 exempt-pr-labels: 'type:feature,type:with reproduction steps,type:has pull request'