Skip to content

Commit 4354321

Browse files
fix: ajouter des chemins à ignorer pour les workflows de lint, pytest et terraform
1 parent b81499c commit 4354321

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on:
33
push:
44
branches:
55
- "*"
6+
paths-ignore:
7+
- 'client/web/**'
68
jobs:
79
build:
810
runs-on: ubuntu-latest

.github/workflows/pytest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- "*"
7+
paths-ignore:
8+
- 'client/web/**'
79
jobs:
810
test:
911
runs-on: ubuntu-latest

.github/workflows/terraform.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- opened
66
- synchronize
77
- closed
8+
paths-ignore:
9+
- 'client/web/**'
810
permissions:
911
id-token: write # This is required for aws oidc connection
1012
contents: read # This is required for actions/checkout

0 commit comments

Comments
 (0)