From 9b06c85f041aa8a64f93f30f26c1c3f7a174bf5d Mon Sep 17 00:00:00 2001 From: Bilal Shafi Date: Wed, 13 Dec 2023 11:52:20 +0500 Subject: [PATCH] [core] Rename other workflows and issue templates to reflect the updated label --- .github/ISSUE_TEMPLATE/1.bug.yml | 2 +- .github/ISSUE_TEMPLATE/2.feature.yml | 2 +- .github/ISSUE_TEMPLATE/3.rfc.yml | 2 +- .github/ISSUE_TEMPLATE/4.docs-feedback.yml | 2 +- .github/ISSUE_TEMPLATE/5.priority-support.yml | 2 +- .github/workflows/ensure-triage-label.yml | 2 +- .github/workflows/mark-duplicate.yml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1.bug.yml b/.github/ISSUE_TEMPLATE/1.bug.yml index a0ef5e23691284..735c03c27eac5c 100644 --- a/.github/ISSUE_TEMPLATE/1.bug.yml +++ b/.github/ISSUE_TEMPLATE/1.bug.yml @@ -1,6 +1,6 @@ name: Bug report 🐛 description: Create a bug report for MUI Core. -labels: ['status: needs triage'] +labels: ['status: waiting for maintainer'] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/2.feature.yml b/.github/ISSUE_TEMPLATE/2.feature.yml index ea27480c3326c7..d6fa088dc090e4 100644 --- a/.github/ISSUE_TEMPLATE/2.feature.yml +++ b/.github/ISSUE_TEMPLATE/2.feature.yml @@ -1,6 +1,6 @@ name: Feature request 💄 description: Suggest a new idea for MUI Core. -labels: ['status: needs triage'] +labels: ['status: waiting for maintainer'] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/3.rfc.yml b/.github/ISSUE_TEMPLATE/3.rfc.yml index bedf972a271001..a5eef95af73fa9 100644 --- a/.github/ISSUE_TEMPLATE/3.rfc.yml +++ b/.github/ISSUE_TEMPLATE/3.rfc.yml @@ -1,7 +1,7 @@ name: RFC 💬 description: Request for comments for your proposal. title: '[RFC] ' -labels: ['status: needs triage', 'RFC'] +labels: ['status: waiting for maintainer', 'RFC'] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/4.docs-feedback.yml b/.github/ISSUE_TEMPLATE/4.docs-feedback.yml index 88fac0f863eb2e..31dbf0869d0cc6 100644 --- a/.github/ISSUE_TEMPLATE/4.docs-feedback.yml +++ b/.github/ISSUE_TEMPLATE/4.docs-feedback.yml @@ -1,6 +1,6 @@ name: Docs feedback description: Improve documentation about MUI Core. -labels: ['status: needs triage', 'support: docs-feedback'] +labels: ['status: waiting for maintainer', 'support: docs-feedback'] title: '[docs] ' body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/5.priority-support.yml b/.github/ISSUE_TEMPLATE/5.priority-support.yml index d5ec4e4ee132c6..c4313abc8f6c9f 100644 --- a/.github/ISSUE_TEMPLATE/5.priority-support.yml +++ b/.github/ISSUE_TEMPLATE/5.priority-support.yml @@ -1,7 +1,7 @@ name: 'Priority Support: SLA ⏰' description: I'm an MUI X Premium user and we have purchased the Priority Support add-on. I can't find a solution to my problem with MUI Core (Material UI, Base UI, MUI System, and Joy UI). title: '[question] ' -labels: ['status: needs triage', 'support: unknown'] +labels: ['status: waiting for maintainer', 'support: unknown'] body: - type: markdown attributes: diff --git a/.github/workflows/ensure-triage-label.yml b/.github/workflows/ensure-triage-label.yml index c4753ccbd3ef44..b88106efdd1485 100644 --- a/.github/workflows/ensure-triage-label.yml +++ b/.github/workflows/ensure-triage-label.yml @@ -30,6 +30,6 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - labels: ['status: needs triage'] + labels: ['status: waiting for maintainer'] }) } diff --git a/.github/workflows/mark-duplicate.yml b/.github/workflows/mark-duplicate.yml index eb9a7559663870..15e82efe76c2bf 100644 --- a/.github/workflows/mark-duplicate.yml +++ b/.github/workflows/mark-duplicate.yml @@ -19,5 +19,5 @@ jobs: actions: 'mark-duplicate' token: ${{ secrets.GITHUB_TOKEN }} duplicate-labels: 'duplicate' - remove-labels: 'status: incomplete,status: needs triage' + remove-labels: 'status: incomplete,status: waiting for maintainer' close-issue: true