Skip to content

Commit e85a9ee

Browse files
committed
fix: codeql dependabot conflict
1 parent 46c62d7 commit e85a9ee

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/codeql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: codeql
22

33
on:
44
push:
5-
branches:
6-
- "**"
5+
branches-ignore:
6+
- "dependabot/**"
77

88
jobs:
99
analyse:

src/categories/js/codeql-workflow/config/default.config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const content = readableMultilineString`
55
66
on:
77
push:
8-
branches:
9-
- "**"
8+
branches-ignore:
9+
- "dependabot/**"
1010
1111
jobs:
1212
analyse:

src/categories/js/dependabot/config/default.config.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import { readableMultilineString } from 'src/utils/string';
33
export const content = readableMultilineString`
44
version: 2
55
updates:
6-
- package-ecosystem: npm
7-
directory: "/"
8-
schedule:
9-
interval: daily
10-
open-pull-requests-limit: 10
6+
- package-ecosystem: npm
7+
directory: "/"
8+
schedule:
9+
interval: daily
10+
open-pull-requests-limit: 10
1111
`;
1212

1313
export const defaultConfig = {

0 commit comments

Comments
 (0)