From d47b048a3eb53c12cf06160ec046f98114fa2b45 Mon Sep 17 00:00:00 2001 From: Camila Macedo <7708031+camilamacedo86@users.noreply.github.com> Date: Sat, 24 Aug 2024 20:19:12 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=B1=20move=20pr=20title=20checker=20to?= =?UTF-8?q?=20be=20under=20test=20with=20ther=20others=20checks=20(#4099)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit move pr title checker to be under test with ther others checks --- .github/workflows/verify.yml | 2 +- hack/ci/pr_title_checker.sh => test/pr-title-checker.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename hack/ci/pr_title_checker.sh => test/pr-title-checker.sh (100%) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index a766c1655ca..dc436c838f9 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -19,4 +19,4 @@ jobs: - name: Run PR Title Checker id: check_title run: | - ./hack/ci/pr_title_checker.sh "${{ env.title }}" + ./test/pr-title-checker.sh "${{ env.title }}" diff --git a/hack/ci/pr_title_checker.sh b/test/pr-title-checker.sh similarity index 100% rename from hack/ci/pr_title_checker.sh rename to test/pr-title-checker.sh