From 9303d1d7e0a3dbfea7daa8781c457ba5457ecdbe Mon Sep 17 00:00:00 2001 From: FonduemangVI <15520607+FonduemangVI@users.noreply.github.com> Date: Sun, 26 Jan 2025 22:38:04 +1100 Subject: [PATCH] fix(gha): add back missing / --- .github/workflows/pr-naming-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-naming-check.yml b/.github/workflows/pr-naming-check.yml index 9a44ae9cad..a629f011c1 100644 --- a/.github/workflows/pr-naming-check.yml +++ b/.github/workflows/pr-naming-check.yml @@ -19,7 +19,7 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | - const titleRegex = /^(Revert \")?(((feat|fix|chore)\((((radarr|sonarr|starr)(-(german|french|anime))?)|(prowlarr|lidarr|bazarr|hardlinks|downloaders|plex|guide-sync|misc|glossary|gha))\))|(docs|style|refactor|perf|test|update|build|ci)(\([\w\/-]+\))?):\s.+$; + const titleRegex = /^(Revert \")?(((feat|fix|chore)\((((radarr|sonarr|starr)(-(german|french|anime))?)|(prowlarr|lidarr|bazarr|hardlinks|downloaders|plex|guide-sync|misc|glossary|gha))\))|(docs|style|refactor|perf|test|update|build|ci)(\([\w\/-]+\))?):\s.+$/; const title = context.payload.pull_request.title; const isValid = titleRegex.test(title); if (!isValid) {