Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit 58e42c8

Browse files
fix(mt-6197): upgrade all dependencies + address vulnerability CVE-2024-52301 (#1)
1 parent 6891936 commit 58e42c8

3 files changed

Lines changed: 2336 additions & 1262 deletions

File tree

.github/workflows/commitlint-commits.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: lint-commit-message
2-
on: push
3-
2+
on:
3+
push:
44
jobs:
55
lint:
66
runs-on: ubuntu-latest
Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lint-pull-request-title
1+
name: lint-pull-request
22

33
on:
44
pull_request:
@@ -8,8 +8,18 @@ jobs:
88
lint:
99
runs-on: ubuntu-latest
1010
steps:
11-
- name: Checkout
12-
uses: actions/checkout@master
13-
- name: Install dependencies
14-
run: npm install @commitlint/config-conventional
15-
- uses: JulienKode/pull-request-name-linter-action@v0.2.0
11+
- name: Checkout
12+
uses: actions/checkout@master
13+
14+
- name: Install Dependencies
15+
# yamllint disable rule:line-length
16+
run: |
17+
npm install @commitlint/config-conventional
18+
echo "module.exports = {extends: ['@commitlint/config-conventional'], rules: { 'subject-case': [0,'always',['sentence-case']],'header-max-length': [2, 'always', 120], 'body-max-line-length': [0, 'always', 120] }};" > commitlint.config.js
19+
# yamllint enable rule:line-length
20+
21+
- name: Lint the PR Title
22+
run: |
23+
echo "${PR_TITLE}" | npx --yes commitlint
24+
env:
25+
PR_TITLE: '${{ github.event.pull_request.title }}'

0 commit comments

Comments
 (0)