From 41664b6bc98e0f99ab9f9d3c759360306d44399b Mon Sep 17 00:00:00 2001 From: "Stollin, Thomas" Date: Mon, 26 May 2025 13:25:32 +0200 Subject: [PATCH 1/2] docs: test scopeless commits --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17ce501..2a931e2 100644 --- a/README.md +++ b/README.md @@ -368,4 +368,4 @@ e.g: [ecs]: https://www.elastic.co/guide/en/ecs/current/index.html -[openid]: https://github.com/dexidp/dex +[openid]: https://github.com/dexidp/dex \ No newline at end of file From c69c6a67877131838d0a79ddf8c48cc6ebbfb156 Mon Sep 17 00:00:00 2001 From: "Stollin, Thomas" Date: Mon, 26 May 2025 13:29:11 +0200 Subject: [PATCH 2/2] fix: fix commit message pattern in workflow --- .github/workflows/semantic-commit-message-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/semantic-commit-message-check.yaml b/.github/workflows/semantic-commit-message-check.yaml index 096c8b1..ede1af4 100644 --- a/.github/workflows/semantic-commit-message-check.yaml +++ b/.github/workflows/semantic-commit-message-check.yaml @@ -12,7 +12,7 @@ jobs: - name: Check valid types uses: gsactions/commit-message-checker@v1 with: - pattern: '^(((fix|feat|docs|style|perf|refactor|test|build|chore|ci|revert)\([\w_-]+\)))?!?: .*' + pattern: '^(fix|feat|docs|style|perf|refactor|test|build|chore|ci|revert)(\([\w_-]+\))?!?: .*' error: 'Your commit message should match one of these types (build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test) in header.' excludeDescription: 'true' excludeTitle: 'true'