Skip to content

Commit

Permalink
ci: fix path matching for pr pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
NickLarsenNZ committed Nov 9, 2023
1 parent 0dccdbe commit 2a04303
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr_cockpit-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- ".github/workflows/pr_cockpit-web.yml"
- "package.json"
- "yarn.lock"
- "web"
- "web/**"

jobs:
build-web:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr_cockpit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ on:
pull_request:
paths:
- ".github/workflows/pr_cockpit.yml"
- "rust/stackable-cockpitd"
- "rust/stackable-cockpit"
- "docs/modules/cockpit"
- "docs/modules/ROOT"
- "rust/stackable-cockpitd/**"
- "rust/stackable-cockpit/**"
- "docs/modules/cockpit/**"
- "docs/modules/ROOT/**"
- "Cargo.lock"
- "deploy"
- "docker"
- "deploy/**"
- "docker/**"
- "go.sum"

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
paths:
- ".github/workflows/pr_docs.yml"
- "docs"
- "docs/**"

jobs:
general-checks:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr_stackablectl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ name: Pull Request Stackablectl
on:
pull_request:
paths:
- ".github/workflows/pr_stackablectl"
- "docs/modules/stackablectl"
- "rust/stackable-cockpit"
- "rust/stackablectl"
- "rust/helm-sys"
- ".github/workflows/pr_stackablectl.yml"
- "docs/modules/stackablectl/**"
- "rust/stackable-cockpit/**"
- "rust/stackablectl/**"
- "rust/helm-sys/**"
- "Cargo.lock"
- "go.sum"
- "extra"
- "extra/**"

env:
RUST_VERSION: 1.70.0
Expand Down

0 comments on commit 2a04303

Please sign in to comment.