From a1168df55ce10425f7a1071cd250079908680395 Mon Sep 17 00:00:00 2001 From: Harel Moshe Date: Tue, 16 Jan 2024 12:12:21 +0200 Subject: [PATCH 1/2] fix(release): allow only release-triggering keywords --- .github/workflows/verify-pr-details.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/verify-pr-details.yml b/.github/workflows/verify-pr-details.yml index 5ffebf22e..9a6b3d8f8 100644 --- a/.github/workflows/verify-pr-details.yml +++ b/.github/workflows/verify-pr-details.yml @@ -24,3 +24,6 @@ jobs: with: disallowScopes: | release + types: | + fix + feat \ No newline at end of file From 989584254f46120713fdd40b71225b7756a0dfe5 Mon Sep 17 00:00:00 2001 From: Harel Moshe Date: Tue, 16 Jan 2024 12:54:26 +0200 Subject: [PATCH 2/2] fix(ci): allow more types --- .github/workflows/verify-pr-details.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/verify-pr-details.yml b/.github/workflows/verify-pr-details.yml index 9a6b3d8f8..263dc7c99 100644 --- a/.github/workflows/verify-pr-details.yml +++ b/.github/workflows/verify-pr-details.yml @@ -25,5 +25,11 @@ jobs: disallowScopes: | release types: | + build + ci + docs + feat fix - feat \ No newline at end of file + perf + refactor + test \ No newline at end of file