-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes GH-9182
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Close stale feature requests | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
stale: | ||
if: github.repository_owner == 'php' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v4 | ||
with: | ||
days-before-close: 7 | ||
days-before-stale: 90 | ||
exempt-all-assignees: true | ||
only-issue-labels: "Status: Requires RFC,Feature" | ||
# Hack to skip PRs, unfortunately there's no option to disable PRs | ||
only-pr-labels: inexistent-label | ||
stale-pr-message: >- | ||
There has not been any recent activity in this feature request. It will automatically be closed in 7 days | ||
if no further action is taken. Please see https://github.com/probot/stale#is-closing-stale-issues-really-a-good-idea | ||
to understand why we auto-close stale feature requests. |