From b5aecb8a3d3f2f4f953e845851f933345c6afb66 Mon Sep 17 00:00:00 2001 From: Martin Pugh Date: Tue, 16 Jun 2020 15:38:43 +0200 Subject: [PATCH] update label names for check_labels job --- polkadot/.gitlab-ci.yml | 2 +- polkadot/scripts/gitlab/{check_tags.sh => check_labels.sh} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename polkadot/scripts/gitlab/{check_tags.sh => check_labels.sh} (93%) diff --git a/polkadot/.gitlab-ci.yml b/polkadot/.gitlab-ci.yml index f173554b15..52386215e9 100644 --- a/polkadot/.gitlab-ci.yml +++ b/polkadot/.gitlab-ci.yml @@ -285,4 +285,4 @@ check-labels: only: - /^[0-9]+$/ script: - - ./scripts/gitlab/check_tags.sh + - ./scripts/gitlab/check_labels.sh diff --git a/polkadot/scripts/gitlab/check_tags.sh b/polkadot/scripts/gitlab/check_labels.sh similarity index 93% rename from polkadot/scripts/gitlab/check_tags.sh rename to polkadot/scripts/gitlab/check_labels.sh index f989a060c1..5cdbdaad4d 100755 --- a/polkadot/scripts/gitlab/check_tags.sh +++ b/polkadot/scripts/gitlab/check_labels.sh @@ -5,9 +5,9 @@ source "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )/lib.sh # Must have one of the following labels labels=( + 'B0-silent' 'B1-releasenotes' - 'B1-runtimenoteworthy' - 'B1-silent' + 'B2-runtimenoteworthy' ) echo "[+] Checking labels for $CI_COMMIT_BRANCH"