Skip to content

Commit d4ff02c

Browse files
committed
chore(ci): fix workflow rules
1 parent 769b09c commit d4ff02c

19 files changed

+77
-39
lines changed

.github/workflows/apache-tika.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ on:
66
pull_request:
77
paths:
88
- .github/workflows/apache-tika.yaml
9-
- 'images/apache-tika/**.yaml'
9+
- 'images/apache-tika/*.yaml'
10+
- 'images/apache-tika/**/*.yaml'
1011
push:
1112
branches:
1213
- 'main'
1314
paths:
1415
- .github/workflows/apache-tika.yaml
15-
- 'images/apache-tika/**.yaml'
16+
- 'images/apache-tika/*.yaml'
17+
- 'images/apache-tika/**/*.yaml'
1618
workflow_dispatch:
1719

1820
permissions:

.github/workflows/bash.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ on:
66
pull_request:
77
paths:
88
- .github/workflows/bash.yaml
9-
- 'images/bash/**.yaml'
9+
- 'images/bash/*.yaml'
10+
- 'images/bash/**/*.yaml'
1011
push:
1112
branches:
1213
- 'main'
1314
paths:
1415
- .github/workflows/bash.yaml
15-
- 'images/bash/**.yaml'
16+
- 'images/bash/*.yaml'
17+
- 'images/bash/**/*.yaml'
1618
workflow_dispatch:
1719

1820
permissions:

.github/workflows/fluent-bit.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ on:
66
pull_request:
77
paths:
88
- .github/workflows/fluent-bit.yaml
9-
- 'images/fluent-bit/**.yaml'
9+
- 'images/fluent-bit/*.yaml'
10+
- 'images/fluent-bit/**/*.yaml'
1011
push:
1112
branches:
1213
- 'main'
1314
paths:
1415
- .github/workflows/fluent-bit.yaml
15-
- 'images/fluent-bit/**.yaml'
16+
- 'images/fluent-bit/*.yaml'
17+
- 'images/fluent-bit/**/*.yaml'
1618
workflow_dispatch:
1719

1820
permissions:

.github/workflows/ggshield.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ on:
66
pull_request:
77
paths:
88
- .github/workflows/ggshield.yaml
9-
- 'images/ggshield/**.yaml'
9+
- 'images/ggshield/*.yaml'
10+
- 'images/ggshield/**/*.yaml'
1011
push:
1112
branches:
1213
- 'main'
1314
paths:
1415
- .github/workflows/ggshield.yaml
15-
- 'images/ggshield/**.yaml'
16+
- 'images/ggshield/*.yaml'
17+
- 'images/ggshield/**/*.yaml'
1618
workflow_dispatch:
1719

1820
permissions:

.github/workflows/helm.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ on:
66
pull_request:
77
paths:
88
- .github/workflows/helm.yaml
9-
- 'images/helm/**.yaml'
9+
- 'images/helm/*.yaml'
10+
- 'images/helm/**/*.yaml'
1011
push:
1112
branches:
1213
- 'main'
1314
paths:
1415
- .github/workflows/helm.yaml
15-
- 'images/helm/**.yaml'
16+
- 'images/helm/*.yaml'
17+
- 'images/helm/**/*.yaml''
1618
workflow_dispatch:
1719
1820
permissions:

.github/workflows/infra-tools.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ on:
66
pull_request:
77
paths:
88
- .github/workflows/infra-tools.yaml
9-
- 'images/infra-tools/**.yaml'
9+
- 'images/infra-tools/*.yaml'
10+
- 'images/infra-tools/**/*.yaml'
1011
push:
1112
branches:
1213
- 'main'
1314
paths:
1415
- .github/workflows/infra-tools.yaml
15-
- 'images/infra-tools/**.yaml'
16+
- 'images/infra-tools/*.yaml'
17+
- 'images/infra-tools/**/*.yaml'
1618
workflow_dispatch:
1719

1820
permissions:

.github/workflows/ingress-nginx-controller.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ on:
66
pull_request:
77
paths:
88
- .github/workflows/ingress-nginx-controller.yaml
9-
- 'images/ingress-nginx-controller/**.yaml'
9+
- 'images/ingress-nginx-controller/*.yaml'
10+
- 'images/ingress-nginx-controller/**/*.yaml'
1011
push:
1112
branches:
1213
- 'main'
1314
paths:
1415
- .github/workflows/ingress-nginx-controller.yaml
15-
- 'images/ingress-nginx-controller/**.yaml'
16+
- 'images/ingress-nginx-controller/*.yaml'
17+
- 'images/ingress-nginx-controller/**/*.yaml'
1618
workflow_dispatch:
1719

1820
permissions:

.github/workflows/istio-proxy.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@ name: istio-proxy
22

33
on:
44
schedule:
5-
- cron: "00 01 * * 1-5"
5+
- cron: "00 01 * * 1"
66
pull_request:
77
paths:
88
- .github/workflows/istio-proxy.yaml
9-
- 'images/istio-proxy/**.yaml'
9+
- 'images/istio-proxy/*.yaml'
10+
- 'images/istio-proxy/**/*.yaml'
1011
push:
1112
branches:
1213
- 'main'
1314
paths:
1415
- .github/workflows/istio-proxy.yaml
15-
- 'images/istio-proxy/**.yaml'
16+
- 'images/istio-proxy/*.yaml'
17+
- 'images/istio-proxy/**/*.yaml'
1618
workflow_dispatch:
1719

1820
permissions:

.github/workflows/loki.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ on:
66
pull_request:
77
paths:
88
- .github/workflows/loki.yaml
9-
- 'images/loki/**.yaml'
9+
- 'images/loki/*.yaml'
10+
- 'images/loki/**/*.yaml'
1011
push:
1112
branches:
1213
- 'main'
1314
paths:
1415
- .github/workflows/loki.yaml
15-
- 'images/loki/**.yaml'
16+
- 'images/loki/*.yaml'
17+
- 'images/loki/**/*.yaml'
1618
workflow_dispatch:
1719

1820
permissions:

.github/workflows/minio-bitnami-client.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ on:
66
pull_request:
77
paths:
88
- .github/workflows/minio-bitnami-client.yaml
9-
- 'images/minio-bitnami-client/**.yaml'
9+
- 'images/minio-bitnami-client/*.yaml'
10+
- 'images/minio-bitnami-client/**/*.yaml'
1011
push:
1112
branches:
1213
- 'main'
1314
paths:
1415
- .github/workflows/minio-bitnami-client.yaml
15-
- 'images/minio-bitnami-client/**.yaml'
16+
- 'images/minio-bitnami-client/*.yaml'
17+
- 'images/minio-bitnami-client/**/*.yaml'
1618
workflow_dispatch:
1719

1820
permissions:

0 commit comments

Comments
 (0)