@samitouri / QOS-React-1 / commits / 7966ccddc8

Enable stale action (#28729)

Follows #28695 Now that the action has run successfully in debug mode ([logs](https://github.com/facebook/react/actions/runs/8532177618/job/23372921455#step:2:35)), let's enable it to persist changes. Also changes the number of operations per run from the default of 30 to 100 since we have a large backlog of issues and PRs to work through. Finally adds enhancement label as exempt from stale.

Jack Pope committed Apr 4, 2024 at 10:27 UTC 7966ccddc8e9a0d9901c40ad556220ea23785088
1 file changed +4 -4
.github/workflows/stale.yml
+4 -4
@@ -16,8 +16,8 @@ jobs:
16 days-before-stale: 90
17 # Number of days of inactivity before a stale issue or PR is closed
18 days-before-close: 7
19 - # Tmp dry run setup to test new config
20 - debug-only: 'true'
19 + # Number of issues or PRs to process per day
20 + operations-per-run: 100
21
22 # --- Issues ---
23 stale-issue-label: "Resolution: Stale"
@@ -30,7 +30,7 @@ jobs:
30 close-issue-message: >
31 Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please create a new issue with up-to-date information. Thank you!
32 # Issues with these labels will never be considered stale
33 - exempt-issue-labels: "Partner,React Core Team,Resolution: Backlog,Type: Bug,Type: Discussion,Type: Needs Investigation,Type: Regression,Type: Feature Request"
33 + exempt-issue-labels: "Partner,React Core Team,Resolution: Backlog,Type: Bug,Type: Discussion,Type: Needs Investigation,Type: Regression,Type: Feature Request,Type: Enhancement"
34
35 # --- PRs ---
36 stale-pr-label: "Resolution: Stale"
@@ -43,4 +43,4 @@ jobs:
43 close-pr-message: >
44 Closing this pull request after a prolonged period of inactivity. If this issue is still present in the latest release, please ask for this pull request to be reopened. Thank you!
45 # PRs with these labels will never be considered stale
46 - exempt-pr-labels: "Partner,React Core Team,Resolution: Backlog,Type: Bug,Type: Discussion,Type: Needs Investigation,Type: Regression,Type: Feature Request"
\ No newline at end of file
46 + exempt-pr-labels: "Partner,React Core Team,Resolution: Backlog,Type: Bug,Type: Discussion,Type: Needs Investigation,Type: Regression,Type: Feature Request,Type: Enhancement"
\ No newline at end of file