| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 0704e3b commit 5fe11b7
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,12 +1,9 @@ | |||
| 1 | 1 | name: Close stale feature requests | |
| 2 | 2 | on: | |
| 3 | 3 | workflow_dispatch: | |
| 4 | - inputs: | ||
| 5 | - daysBeforeStale: | ||
| 6 | - description: Idle number of days before marking feature requests stale | ||
| 7 | - required: true | ||
| 8 | - default: 906 | ||
| 9 | - type: number | ||
| 4 | + schedule: | ||
| 5 | + # Run every day at 1:00 AM UTC. | ||
| 6 | + - cron: 0 1 * * * | ||
| 10 | 7 | ||
| 11 | 8 | # yamllint disable rule:empty-lines | |
| 12 | 9 | env: | |
@@ -39,7 +36,7 @@ jobs: | |||
| 39 | 36 | - uses: actions/stale@v4 | |
| 40 | 37 | with: | |
| 41 | 38 | repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| 42 | - days-before-stale: ${{ github.event.inputs.daysBeforeStale }} | ||
| 39 | + days-before-stale: 180 | ||
| 43 | 40 | days-before-close: 30 | |
| 44 | 41 | stale-issue-label: stale | |
| 45 | 42 | close-issue-message: ${{ env.CLOSE_MESSAGE }} | |
| Back | FazBrowse Home | New Git URL |
0 commit comments