Skip to content

Commit

Permalink
Move workflow runs to main branch
Browse files Browse the repository at this point in the history
Make sure all github actions runs from main
  • Loading branch information
schaefi committed Jan 9, 2024
1 parent 6de3874 commit a501f6c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI-Code-Style
on:
push:
branches:
- "master"
- "main"
pull_request:

jobs:
Expand All @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-config-functions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: CI-Config-Functions
on:
push:
branches:
- "master"
- "main"
paths:
- "kiwi/config/functions.sh"
- ".github/workflows/**"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-differential-shellcheck.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CI-Differential-ShellCheck
on:
pull_request:
branches: [master]
branches: [main]

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI-Documentation
on:
push:
branches:
- "master"
- "main"
pull_request:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-units-types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI-Unit-And-Types
on:
push:
branches:
- "master"
- "main"
pull_request:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-update-build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI-Update-Build-Tests
on:
push:
branches:
- "master"
- "main"
paths:
- "build-tests/**"

Expand Down

0 comments on commit a501f6c

Please sign in to comment.