From c62590a2d8c7df1923a900a23b5f8e24b6d87fca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20M=2E?= Date: Mon, 2 Jun 2025 19:49:00 +0100 Subject: [PATCH] chore(git): improve Ionitron to stop closing issues that have the 'needs: investigation' label (#30424) Issue number: internal --------- ## What is the current behavior? - Currently, `Ionitron` is closing issues when they have the `needs: investigation` label. - We might want to use the duplicate ticket as our source of truth since a community member has made a [suggestion](https://github.com/ionic-team/ionic-framework/issues/30380#issuecomment-2848626887) that could fix it. ## What is the new behavior? - The `ionic-issue-bot.yml` file was changed to stop closing issues that have the `needs: investigation` label - To prevent `Ionitron` from closing issues with the `needs: investigation` label, we've added this label to the `exemptLabels` list under the `stale`, `noReply`, and `noReproduction` sections. - This tells the bot not to close issues with that label, even if they meet the criteria for being stale or lacking a reply/reproduction. ## Does this introduce a breaking change? - [ ] Yes - [X] No ## Other information - _N.A._ --------- Co-authored-by: Brandy Smith --- .github/ionic-issue-bot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ionic-issue-bot.yml b/.github/ionic-issue-bot.yml index 8db735ce2d..25fab64cb6 100644 --- a/.github/ionic-issue-bot.yml +++ b/.github/ionic-issue-bot.yml @@ -93,6 +93,7 @@ stale: - "triage" - "type: bug" - "type: feature request" + - "needs: investigation" exemptAssigned: true exemptProjects: true exemptMilestones: true