From b36e457d9adf3a26b8d47e66c004096cffa52463 Mon Sep 17 00:00:00 2001 From: Rishabh Singh Date: Wed, 2 Nov 2022 14:52:17 -0700 Subject: [PATCH] Add untriaged label to new github issues Signed-off-by: Rishabh Singh --- vars/createGithubIssue.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/createGithubIssue.groovy b/vars/createGithubIssue.groovy index b0df06492..321b2aa6a 100644 --- a/vars/createGithubIssue.groovy +++ b/vars/createGithubIssue.groovy @@ -64,7 +64,7 @@ def create_issue(component, url, currentVersion, failedMessage){ println("Issue already exists in the repository, skipping.") } else { sh ( - script: "gh issue create --title \"[AUTOCUT] OS Distribution Build Failed for ${component}-${currentVersion}\" --body \"${message}\" --label ${label} --repo ${url}", + script: "gh issue create --title \"[AUTOCUT] OS Distribution Build Failed for ${component}-${currentVersion}\" --body \"${message}\" --label ${label} --label \"untriaged\" --repo ${url}", returnStdout: true ) }