From d6b5319e7322ef25e1c094a7d239740faf3ca35f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 26 May 2026 15:40:39 +0000 Subject: [PATCH] fix(ci): support deps commits and align dependabot prefix Agent-Logs-Url: https://github.com/JerrettDavis/PatternKit/sessions/71587abf-a2ba-40d2-a1d6-e7293cd53171 Co-authored-by: JerrettDavis <2610199+JerrettDavis@users.noreply.github.com> --- .github/dependabot.yml | 2 +- .github/workflows/conventional-commits.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d5a03350..0f52a8ec 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,7 +15,7 @@ updates: - "dependencies" - "nuget" commit-message: - prefix: "deps" + prefix: "chore" include: "scope" groups: all-nuget: diff --git a/.github/workflows/conventional-commits.yml b/.github/workflows/conventional-commits.yml index 96e6d403..a15d1e2d 100644 --- a/.github/workflows/conventional-commits.yml +++ b/.github/workflows/conventional-commits.yml @@ -18,7 +18,7 @@ jobs: uses: actions/github-script@v9 with: script: | - const allowed = /^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\([A-Za-z0-9._/-]+\))?!?: .+$/; + const allowed = /^(build|chore|ci|deps|docs|feat|fix|perf|refactor|revert|style|test)(\([A-Za-z0-9._/-]+\))?!?: .+$/; const allowedSpecial = /^(Merge .+|Revert ".+")$/; const failures = []; @@ -51,7 +51,7 @@ jobs: ' type: description', '', 'Allowed types:', - ' build, chore, ci, docs, feat, fix, perf, refactor, revert, style, test', + ' build, chore, ci, deps, docs, feat, fix, perf, refactor, revert, style, test', '', 'Failures:', ...failures.map(f => ` - ${f}`),