Skip to content

Commit 0e904b0

Browse files
committed
Fix branch name in workflows
1 parent ec4f3ba commit 0e904b0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
paths:
77
- "**.ts"
88
- "tsconfig.json"
@@ -13,7 +13,7 @@ on:
1313
- "pnpm-lock.yaml"
1414
- ".github/workflows/ci.yml"
1515
pull_request:
16-
branches: [master]
16+
branches: [main]
1717
paths:
1818
- "**.ts"
1919
- "tsconfig.json"

.github/workflows/eslint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ESLint
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
paths:
77
- "**.ts"
88
- "package.json"
@@ -11,7 +11,7 @@ on:
1111
- ".eslintignore"
1212
- ".github/workflows/eslint.yml"
1313
pull_request:
14-
branches: [master]
14+
branches: [main]
1515
paths:
1616
- "**.ts"
1717
- "package.json"

0 commit comments

Comments
 (0)