Skip to content

Commit 136c62e

Browse files
authored
chore(ci): Fix failing dependabot PRs (#938)
1 parent f1b13f7 commit 136c62e

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/ci.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@
1717

1818
name: Node CI
1919

20-
on: [push, pull_request]
20+
on:
21+
push:
22+
branches-ignore:
23+
- 'dependabot/**'
24+
pull_request:
25+
branches:
26+
- '*'
2127

2228
jobs:
2329
test:

.github/workflows/release-audit.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@
1717

1818
name: Release Auditing
1919

20-
on: [push, pull_request]
20+
on:
21+
push:
22+
branches-ignore:
23+
- 'dependabot/**'
24+
pull_request:
25+
branches:
26+
- '*'
2127

2228
jobs:
2329
test:

0 commit comments

Comments
 (0)