Skip to content

Commit b433e7b

Browse files
committed
fix: Update all workflows to use master branch instead of main
1 parent 0391ddd commit b433e7b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

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

33
on:
44
push:
5-
branches: [ main, develop ]
5+
branches: [ master, develop ]
66
pull_request:
7-
branches: [ main, develop ]
7+
branches: [ master, develop ]
88

99
env:
1010
PYTHON_VERSION_DEFAULT: '3.11'

.github/workflows/docker.yml

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

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ master ]
66
tags: [ 'v*.*.*' ]
77
pull_request:
8-
branches: [ main ]
8+
branches: [ master ]
99

1010
env:
1111
REGISTRY: ghcr.io

.github/workflows/quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Code Quality
22

33
on:
44
push:
5-
branches: [ main, develop ]
5+
branches: [ master, develop ]
66
pull_request:
7-
branches: [ main, develop ]
7+
branches: [ master, develop ]
88

99
jobs:
1010
lint-and-format:

0 commit comments

Comments
 (0)