Skip to content

Commit cb74c95

Browse files
committed
dk/cicd-small-fixes
1 parent dccfe90 commit cb74c95

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

Diff for: .github/workflows/build-push.yml

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
name: Build and upload to PyPi
22

3-
on: [push, pull_request]
4-
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- 'branch-**'
8+
pull_request:
9+
paths-ignore:
10+
- docs/*
11+
- examples/*
12+
- scripts/*
13+
- .gitignore
14+
- '*.rst'
15+
- '*.ini'
16+
- LICENSE
17+
- .github/dependabot.yml
18+
- .github/pull_request_template.md
19+
workflow_dispatch:
520

621
env:
722
CIBW_TEST_COMMAND_LINUX: >

Diff for: .github/workflows/docs-pr.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ on:
66
pull_request:
77
branches:
88
- master
9+
- 'branch-**'
910
paths:
1011
- "docs/**"
12+
workflow_dispatch:
1113

1214
jobs:
1315
build:

Diff for: .github/workflows/integration-tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
push:
88
branches:
99
- master
10+
workflow_dispatch:
1011

1112
jobs:
1213
tests:

0 commit comments

Comments
 (0)