Skip to content

Commit c206a27

Browse files
committed
feat: add alternate branch of master for all on push jobs
1 parent 03c133c commit c206a27

9 files changed

+9
-0
lines changed

{{cookiecutter.project_name}}/.github/workflows/build-python.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
push:
1717
branches:
1818
- main
19+
- master
1920
paths:
2021
- 'src/**/*.py'
2122
- 'tests/**/*.py'

{{cookiecutter.project_name}}/.github/workflows/docs-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ on:
2121
push:
2222
branches:
2323
- main
24+
- master
2425
paths:
2526
- 'docs/**'
2627
- 'src/**/*.py'

{{cookiecutter.project_name}}/.github/workflows/lint-global.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ on:
2020
push:
2121
branches:
2222
- main
23+
- master
2324
paths:
2425
- '**.yaml'
2526
- '**.toml'

{{cookiecutter.project_name}}/.github/workflows/lint-python.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
push:
1717
branches:
1818
- main
19+
- master
1920
paths:
2021
- 'src/**/*.py'
2122
- 'tests/**/*.py'

{{cookiecutter.project_name}}/.github/workflows/security-python.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
push:
1717
branches:
1818
- main
19+
- master
1920
paths:
2021
- 'src/**/*.py'
2122
- 'tests/**/*.py'

{{cookiecutter.project_name}}/.github/workflows/test-python.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515
push:
1616
branches:
1717
- main
18+
- master
1819
paths:
1920
- 'src/**/*.py'
2021
- 'tests/**/*.py'

{{cookiecutter.project_name}}/.github/workflows/typecheck-python.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
push:
1717
branches:
1818
- main
19+
- master
1920
paths:
2021
- 'src/**/*.py'
2122
- 'tests/**/*.py'

{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.add_rust_extension == 'y' %} lint-rust.yml {%- endif %}

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
push:
1313
branches:
1414
- main
15+
- master
1516
paths:
1617
- crates/**
1718
- docs/source/src/rust/**

{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.add_rust_extension == 'y' %} test-rust.yml {%- endif %}

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
push:
1111
branches:
1212
- main
13+
- master
1314
paths:
1415
- crates/**
1516
- examples/**

0 commit comments

Comments
 (0)