Skip to content

Commit 011a94e

Browse files
committed
chore: configure some workflows to not trigger on documentation and infrastructure changes
[skip ci]
1 parent 95be4de commit 011a94e

5 files changed

+30
-0
lines changed

.github/workflows/integration-tests-h2.yml

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Integration Tests (H2)
22

33
on:
44
push:
5+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpushpull_requestpull_request_targetpathspaths-ignore
6+
paths-ignore:
7+
- '.github/**'
8+
- '!.github/workflows/integration-tests-h2.yml'
9+
- 'docs/**'
10+
- 'infra/**'
511

612
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
713
permissions:

.github/workflows/integration-tests-mysql.yml

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Integration Tests (MySQL)
22

33
on:
44
push:
5+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpushpull_requestpull_request_targetpathspaths-ignore
6+
paths-ignore:
7+
- '.github/**'
8+
- '!.github/workflows/integration-tests-mysql.yml'
9+
- 'docs/**'
10+
- 'infra/**'
511

612
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
713
permissions:

.github/workflows/integration-tests-postgres.yml

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Integration Tests (PostgreSQL)
22

33
on:
44
push:
5+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpushpull_requestpull_request_targetpathspaths-ignore
6+
paths-ignore:
7+
- '.github/**'
8+
- '!.github/workflows/integration-tests-postgres.yml'
9+
- 'docs/**'
10+
- 'infra/**'
511

612
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
713
permissions:

.github/workflows/static-analysis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Static Analysis
22

33
on:
44
push:
5+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpushpull_requestpull_request_targetpathspaths-ignore
6+
paths-ignore:
7+
- '.github/**'
8+
- '!.github/workflows/static-analysis.yml'
9+
- 'docs/**'
10+
- 'infra/**'
511

612
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
713
permissions:

.github/workflows/unit-tests.yml

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Unit Tests
22

33
on:
44
push:
5+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpushpull_requestpull_request_targetpathspaths-ignore
6+
paths-ignore:
7+
- '.github/**'
8+
- '!.github/workflows/unit-tests.yml'
9+
- 'docs/**'
10+
- 'infra/**'
511

612
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
713
permissions:

0 commit comments

Comments
 (0)