Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/commit-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
- name: Validate branch name
run: |
BRANCH="${{ github.head_ref }}"
if [[ "$BRANCH" == release-please--* ]]; then
echo "✅ Skipping branch name check for release-please branch."
exit 0
fi
PATTERN="^(feat|fix|docs|refactor|chore|test|perf)/.+"
if [[ ! "$BRANCH" =~ $PATTERN ]]; then
echo "❌ Branch name '$BRANCH' does not follow the convention."
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ runners/mcp/dist/
runners/extension/catalog.json
.opfor/
*.json
CHANGELOG.md
1 change: 1 addition & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"packages": {
".": {
"release-type": "node",
"include-component-in-tag": false,
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"extra-files": [
Expand Down
Loading