From 9e12bd098a548ca8c4618a913c82d953e1e97fdc Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sat, 2 Mar 2024 14:59:43 +0100 Subject: [PATCH] chore: Add a label for author claims. See #6227 --- sites/org/components/layouts/post.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/org/components/layouts/post.mjs b/sites/org/components/layouts/post.mjs index b60e496f3aa..1f1b3f5f987 100644 --- a/sites/org/components/layouts/post.mjs +++ b/sites/org/components/layouts/post.mjs @@ -84,7 +84,7 @@ const createIssue = async ({ account, setLoadingStatus, title, body, backend, se const issueData = { title, body: account ? `${body}\n\n${userCard(account.id || false)}` : body, - labels: ['%3A%2B1%3A+good+first+issue'], + labels: [':+1: good first issue', 'author claim'], } const result = await backend.createIssue(issueData) if (result.success) {