Skip to content

Commit

Permalink
use master branch instead of main
Browse files Browse the repository at this point in the history
  • Loading branch information
norbusan committed Feb 14, 2024
1 parent 031a576 commit 259641e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Build

on:
push:
branches: [ main ]
branches: [ master ]
paths-ignore:
- 'src/pretalx/locale/**'
- 'doc/**'
pull_request:
branches: [ main ]
branches: [ master ]
paths-ignore:
- 'src/pretalx/locale/**'
- 'doc/**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch: # allows to be run manually
push:
branches:
- 'main'
- 'master'
- 'development'
jobs:
docker:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Documentation

on:
push:
branches: [ main ]
branches: [ master ]
paths:
- 'doc/**'
pull_request:
branches: [ main ]
branches: [ master ]
paths-ignore:
- 'doc/**'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Code Style

on:
push:
branches: [ main ]
branches: [ master ]
paths-ignore:
- 'src/pretalx/locale/**'
- 'src/pretalx/static/**'
- 'doc/**'
pull_request:
branches: [ main ]
branches: [ master ]
paths-ignore:
- 'src/pretalx/locale/**'
- 'src/pretalx/static/**'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Tests

on:
push:
branches: [ main ]
branches: [ master ]
paths-ignore:
- 'doc/**'
- 'src/pretalx/locale/**'
pull_request:
branches: [ main ]
branches: [ master ]
paths-ignore:
- 'doc/**'
- 'src/pretalx/locale/**'
Expand Down Expand Up @@ -126,4 +126,4 @@ jobs:
label: coverage
message: ${{ env.TOTAL_COV }}%
color: "#3aa57c"
if: env.TOTAL_COV && github.ref == 'refs/heads/main'
if: env.TOTAL_COV && github.ref == 'refs/heads/master'

0 comments on commit 259641e

Please sign in to comment.