From 5c2bd5443db1550c3007305c03a28669ca3338ef Mon Sep 17 00:00:00 2001 From: Alexander Varwijk Date: Mon, 22 Apr 2024 08:49:21 +0200 Subject: [PATCH] Make duplication messages consistent We were using "Duplicate" in one and "Multiple X" in the other. We now have them all consistently showing "multiple x" to aid recognizability for the users. --- .github/prManager/src/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/prManager/src/constants.js b/.github/prManager/src/constants.js index 634d1223c13..f394d59623a 100644 --- a/.github/prManager/src/constants.js +++ b/.github/prManager/src/constants.js @@ -7,10 +7,10 @@ export const feedbackDuplicateTypeLabel = "**Multiple type labels selected**\nTh // @todo Provide links to documentation for picking the correct priority. export const feedbackMissingPriorityLabel = "**Missing priority label**\nThe pull request is missing a `prio: ` label which helps people prioritise contributing to open pull requests. Please choose a priority label appropriate for your pull request.\n\n"; -export const feedbackDuplicatePriorityLabel = "**Duplicate priority label**\nYour pull request has multiple priority labels. Please select only a single priority and remove the other priority labels.\n\n"; +export const feedbackDuplicatePriorityLabel = "**Multiple priority labels selected**\nYour pull request has multiple priority labels. Please select only a single priority and remove the other priority labels.\n\n"; export const feedbackMissingTeamLabel = "**Missing team label**\nYour pull request is missing a `team: ` label. The team label helps others understand what work they should focus on and which team they can ask questions about a specific PR.\n\n"; -export const feedbackDuplicateTeamLabel = "**Duplicate team label**\nThe pull request hsa multiple `team: ` labels. Please select only the team label for the team that's responsible for the pull request and remove the others.\n\n"; +export const feedbackDuplicateTeamLabel = "**Multiple team labels selected**\nThe pull request has multiple `team: ` labels. Please select only the team label for the team that's responsible for the pull request and remove the others.\n\n"; export const feedbackMissingMilestone = "**Missing milestone**\nThe issue is missing a milestone. Milestones are important to help release managers know whether they might need to postpone a release for a critical issue and to communicate what fixes and new features are included in a release. Before merging, please select the appropriate milestone for this pull request.\n\n";