Skip to content

Commit fe37d49

Browse files
authored
ci: fix path matching for pr pipelines (#141)
1 parent 0dccdbe commit fe37d49

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/pr_cockpit-web.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- ".github/workflows/pr_cockpit-web.yml"
77
- "package.json"
88
- "yarn.lock"
9-
- "web"
9+
- "web/**"
1010

1111
jobs:
1212
build-web:

.github/workflows/pr_cockpit.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ on:
55
pull_request:
66
paths:
77
- ".github/workflows/pr_cockpit.yml"
8-
- "rust/stackable-cockpitd"
9-
- "rust/stackable-cockpit"
10-
- "docs/modules/cockpit"
11-
- "docs/modules/ROOT"
8+
- "rust/stackable-cockpitd/**"
9+
- "rust/stackable-cockpit/**"
10+
- "docs/modules/cockpit/**"
11+
- "docs/modules/ROOT/**"
1212
- "Cargo.lock"
13-
- "deploy"
14-
- "docker"
13+
- "deploy/**"
14+
- "docker/**"
1515
- "go.sum"
1616

1717
env:

.github/workflows/pr_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
pull_request:
66
paths:
77
- ".github/workflows/pr_docs.yml"
8-
- "docs"
8+
- "docs/**"
99

1010
jobs:
1111
general-checks:

.github/workflows/pr_stackablectl.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ name: Pull Request Stackablectl
44
on:
55
pull_request:
66
paths:
7-
- ".github/workflows/pr_stackablectl"
8-
- "docs/modules/stackablectl"
9-
- "rust/stackable-cockpit"
10-
- "rust/stackablectl"
11-
- "rust/helm-sys"
7+
- ".github/workflows/pr_stackablectl.yml"
8+
- "docs/modules/stackablectl/**"
9+
- "rust/stackable-cockpit/**"
10+
- "rust/stackablectl/**"
11+
- "rust/helm-sys/**"
1212
- "Cargo.lock"
1313
- "go.sum"
14-
- "extra"
14+
- "extra/**"
1515

1616
env:
1717
RUST_VERSION: 1.70.0

0 commit comments

Comments
 (0)