Skip to content

Commit 6cbd9d7

Browse files
authored
CI: fix ignored paths (#13733)
1 parent abf82b3 commit 6cbd9d7

File tree

6 files changed

+7
-15
lines changed

6 files changed

+7
-15
lines changed

.github/workflows/ci-app_cloud_e2e_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ name: cloud-testing
44

55
on: # Trigger the workflow on push or pull request, but only for the master branch
66
push:
7-
branches:
8-
- "master"
7+
branches: [master, "release/*"]
98
pull_request:
9+
branches: [master, "release/*"]
1010

1111
concurrency:
1212
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}

.github/workflows/ci-app_examples.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,9 @@ name: Test App - examples
33
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push:
6-
branches:
7-
- "master"
6+
branches: [master, "release/*"]
87
pull_request:
9-
paths:
10-
- "src/lightning_app/**"
11-
- "tests/tests_app_examples/**"
12-
- "requirements/app/**"
13-
- "setup.py"
8+
branches: [master, "release/*"]
149

1510
concurrency:
1611
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}

.github/workflows/ci-app_tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: Test App
33
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
44
on: # Trigger the workflow on push or pull request, but only for the master branch
55
push:
6-
branches:
7-
- "master"
6+
branches: [master, "release/*"]
87
pull_request:
98
paths:
109
- "src/lightning_app/**"

.github/workflows/ci_pkg-install.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on: # Trigger the workflow on push or pull request, but only for the master bra
66
branches: [master, "release/*"]
77
pull_request:
88
branches: [master, "release/*"]
9-
paths-ignore:
10-
- "src/lightning_app/**" # todo: implement job skip
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}

.github/workflows/cicd-pytorch_dockers.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ on:
88
paths:
99
- "dockers/**"
1010
- "!dockers/README.md"
11-
- "requirements/*"
11+
- "requirements/**"
1212
- "requirements.txt"
1313
- "environment.yml"
1414
- ".github/workflows/*docker*.yml"
15-
- ".github/workflows/events-nightly.yml"
1615
- "setup.py"
1716
schedule:
1817
- cron: "0 0 * * *" # at the end of every day

.github/workflows/release-pypi.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ jobs:
183183
repo-token: ${{ secrets.GITHUB_TOKEN }}
184184

185185
publish-package:
186+
# fixme: each package needs to be signed with own auth token
186187
runs-on: ubuntu-20.04
187188
needs: build-meta-pkg
188189
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'

0 commit comments

Comments
 (0)