What changed, and why it matters
This change simply adds 'perf' to the list of allowed commit message types in a GitHub Actions workflow that checks whether commit messages follow a conventional format. It has no effect on the Krux software users run, on private keys, wallets, or any security-sensitive behavior.
No security action needed. Treat as a normal repository hygiene change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies .github/workflows/conventional-commits.yml, expanding the allowed-commit-types input of webiny/action-conventional-commits@v1.3.0 from ‘feat,fix,docs,style,refactor,test,i18n,ci,chore,git’ to include ‘perf’. This is a CI policy/configuration change only; no application code, cryptography, build artifacts, or dependencies are touched.
Changed components
.github/workflows/conventional-commits.ymlInspect captured patch +1 / −1
diff --git a/.github/workflows/conventional-commits.yml b/.github/workflows/conventional-commits.yml
index 46b2a02..4c4d328 100644
--- a/.github/workflows/conventional-commits.yml
+++ b/.github/workflows/conventional-commits.yml
@@ -10,4 +10,4 @@ jobs:
- uses: actions/checkout@v4
- uses: webiny/action-conventional-commits@v1.3.0
with:
- allowed-commit-types: "feat,fix,docs,style,refactor,test,i18n,ci,chore,git"
+ allowed-commit-types: "feat,fix,docs,style,refactor,perf,test,i18n,ci,chore,git"
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.