Skip to content

Commit 5d91e7a

Browse files
authored
ci: exclude internal/librariangen/** on unrelated checks (#3953)
1 parent 80cb0e3 commit 5d91e7a

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on:
33
branches:
44
- main
55
pull_request:
6+
paths-ignore:
7+
- 'internal/librariangen/**'
68
name: ci
79
jobs:
810
build:

.github/workflows/dependency_compatibility_test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
pull_request:
55
branches:
66
- 'main'
7+
paths-ignore:
8+
- 'internal/librariangen/**'
79
workflow_dispatch:
810
inputs:
911
dependencies-list:

.github/workflows/hermetic_library_generation.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
name: Hermetic library generation upon generation config change through pull requests
1717
on:
1818
pull_request:
19+
paths-ignore:
20+
- 'internal/librariangen/**'
1921

2022
env:
2123
REPO_FULL_NAME: ${{ github.event.pull_request.head.repo.full_name }}

.github/workflows/java_compatibility_check.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# downstream client libraries before they are released.
1616
on:
1717
pull_request:
18+
paths-ignore:
19+
- 'internal/librariangen/**'
1820
name: Java 8 compatibility check
1921
jobs:
2022
java8-compatibility-check:

.github/workflows/sonar.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- main
66
pull_request:
77
types: [opened, synchronize, reopened]
8+
paths-ignore:
9+
- 'internal/librariangen/**'
810
jobs:
911
build:
1012
name: Build

.github/workflows/verify_library_generation.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
on:
22
pull_request:
3+
paths-ignore:
4+
- 'internal/librariangen/**'
35

46
name: verify_library_generation
57
jobs:

0 commit comments

Comments
 (0)