From 99df51f926c710f0fa3d4c9298067b6b963b0c63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Carden=CC=83a?= <35935591+luisecm@users.noreply.github.com> Date: Tue, 4 Jun 2024 13:27:54 -0600 Subject: [PATCH] chore(label): add test as valid start label for PR --- .github/workflows/lint-PR-title.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-PR-title.yml b/.github/workflows/lint-PR-title.yml index d1ddd7af..1f8ee703 100644 --- a/.github/workflows/lint-PR-title.yml +++ b/.github/workflows/lint-PR-title.yml @@ -17,7 +17,7 @@ jobs: id: regex-match with: text: ${{ github.event.pull_request.title }} - regex: '(?:add|update|task|chore|feat|fix|refactor)\([a-z-A-Z]+\):\s.+' + regex: '(?:add|update|task|test|chore|feat|fix|refactor)\([a-z-A-Z]+\):\s.+' - uses: actions-ecosystem/action-create-comment@v1 if: ${{ steps.regex-match.outputs.match == '' }}