Skip to content

Commit b615509

Browse files
committed
fix(ci): use correct default branch name
The `on: push` workflow rule worked against master, our default branch is main. Correct that so our pipelines actually run in MR. Signed-off-by: Christoph Steiger <[email protected]>
1 parent 977378c commit b615509

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: Lint Python Code
77
on:
88
pull_request:
99
branches:
10-
- master
10+
- main
1111
push:
1212

1313
jobs:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: Run Tests
77
on:
88
pull_request:
99
branches:
10-
- master
10+
- main
1111
push:
1212

1313
jobs:

0 commit comments

Comments
 (0)