Skip to content

Commit 214c605

Browse files
authored
chore: apply audit fix; adjust coverage threshold; update pr-title action (#2814)
1 parent 29ba984 commit 214c605

3 files changed

Lines changed: 38 additions & 32 deletions

File tree

.github/workflows/pr-title.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,13 @@ jobs:
3434
github.event.pull_request.user.login != 'dependabot[bot]' &&
3535
github.event.pull_request.user.login != 'github-actions[bot]'
3636
runs-on: ubuntu-latest
37+
concurrency: # Allows debouncing when editing the PR description
38+
group: pr-required-checklist-${{ github.event.pull_request.number }}
39+
cancel-in-progress: true
3740
steps:
41+
- name: Debounce delay
42+
run: sleep 30 # seconds
43+
3844
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3945

4046
- name: Check required checklist items

package-lock.json

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vitest.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const configExtension: { [key: string]: ViteUserConfig } = {
2222
thresholds: {
2323
lines: 80,
2424
functions: 83,
25-
statements: 79,
26-
branches: 71,
25+
statements: 80,
26+
branches: 72,
2727
},
2828
},
2929
},

0 commit comments

Comments
 (0)