Skip to content

Commit

Permalink
fix: possible commitlint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Kruggel committed Feb 13, 2024
1 parent cb1e61b commit acf49ac
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/commitlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0

- name: Install commitlint
run: npm install --save-dev @commitlint/{config-conventional,cli}
run: |
npm install --save-dev @commitlint/[email protected]
npm install --save-dev @commitlint/[email protected]
- name: Lint PR title
run: echo "${{ github.event.pull_request.title }}" | npx commitlint
7 changes: 7 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,13 @@
"# renovate: bb-chart\\n .*- name: .*?\\n *url: ['\"]{0,1}(?<registryUrl>https:\\/\\/.*?)\\/(?<depName>.*?)\\.git['\"]{0,1}\\n *version: ['\"]{0,1}(?<currentValue>.*?)['\"]{0,1}\\n"
],
"datasourceTemplate": "gitlab-tags"
},
{
"fileMatch": ["^\\.github/workflows/commitlint\\.yaml$"],
"matchStrings": [
"npm install --save-dev (?<depName>@?.*?)@(?<currentValue>.+)"
],
"datasourceTemplate": "npm"
}
],
"packageRules": [
Expand Down

0 comments on commit acf49ac

Please sign in to comment.