Skip to content

Commit 36b052e

Browse files
committed
ci: don't run CI on markdown updates (#1651)
1 parent e7582d7 commit 36b052e

10 files changed

+26
-16
lines changed

.github/workflows/dart.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- release/**
77
pull_request:
88
paths-ignore:
9+
- "**/*.md"
910
- "logging/**"
1011
- "dio/**"
1112
- "file/**"

.github/workflows/dio.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- release/**
77
pull_request:
88
paths-ignore:
9+
- "**/*.md"
910
- "logging/**"
1011
- "flutter/**"
1112
- "file/**"

.github/workflows/e2e_dart.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ on:
66
- release/**
77
pull_request:
88
paths-ignore:
9-
- 'logging/**'
10-
- 'dio/**'
11-
- 'flutter/**'
12-
- 'file/**'
13-
- 'sqflite/**'
9+
- "**/*.md"
10+
- "logging/**"
11+
- "dio/**"
12+
- "flutter/**"
13+
- "file/**"
14+
- "sqflite/**"
1415

1516
env:
1617
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
@@ -27,7 +28,7 @@ jobs:
2728

2829
build:
2930
name: E2E
30-
runs-on: 'ubuntu-latest'
31+
runs-on: "ubuntu-latest"
3132
timeout-minutes: 30
3233
defaults:
3334
run:

.github/workflows/file.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- release/**
77
pull_request:
88
paths-ignore:
9+
- "**/*.md"
910
- "logging/**"
1011
- "flutter/**"
1112
- "dio/**"

.github/workflows/flutter.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- release/**
77
pull_request:
88
paths-ignore:
9+
- "**/*.md"
910
- "logging/**"
1011
- "dio/**"
1112
- "file/**"

.github/workflows/flutter_test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- release/**
77
pull_request:
88
paths-ignore:
9+
- "**/*.md"
910
- "file/**"
1011

1112
env:

.github/workflows/logging.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- release/**
77
pull_request:
88
paths-ignore:
9+
- "**/*.md"
910
- "dio/**"
1011
- "flutter/**"
1112
- "file/**"

.github/workflows/metrics.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ on:
77
- dart/**
88
- flutter/**
99
- metrics/**
10+
- "!**/*.md"
1011
branches-ignore:
1112
- deps/**
1213
- dependabot/**
13-
tags-ignore: ['**']
14+
tags-ignore: ["**"]
1415

1516
jobs:
1617
cancel-previous-workflow:
@@ -59,8 +60,8 @@ jobs:
5960
- uses: actions/setup-java@v3
6061
if: ${{ matrix.platform == 'android' }}
6162
with:
62-
java-version: '11'
63-
distribution: 'adopt'
63+
java-version: "11"
64+
distribution: "adopt"
6465

6566
- run: ./metrics/prepare.sh
6667

.github/workflows/min_version_test.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ on:
66
- release/**
77
pull_request:
88
paths-ignore:
9-
- 'file/**'
10-
- 'sqflite/**'
9+
- "**/*.md"
10+
- "file/**"
11+
- "sqflite/**"
1112

1213
jobs:
1314
cancel-previous-workflow:
@@ -27,12 +28,12 @@ jobs:
2728

2829
- uses: actions/setup-java@v3
2930
with:
30-
distribution: 'adopt'
31-
java-version: '11'
31+
distribution: "adopt"
32+
java-version: "11"
3233

3334
- uses: subosito/flutter-action@48cafc24713cca54bbe03cdc3a423187d413aafa # [email protected]
3435
with:
35-
flutter-version: '3.0.0'
36+
flutter-version: "3.0.0"
3637

3738
- name: Build Android
3839
run: |
@@ -49,7 +50,7 @@ jobs:
4950

5051
- uses: subosito/flutter-action@48cafc24713cca54bbe03cdc3a423187d413aafa # [email protected]
5152
with:
52-
flutter-version: '3.0.0'
53+
flutter-version: "3.0.0"
5354

5455
- name: Build iOS
5556
run: |
@@ -66,7 +67,7 @@ jobs:
6667

6768
- uses: subosito/flutter-action@48cafc24713cca54bbe03cdc3a423187d413aafa # [email protected]
6869
with:
69-
flutter-version: '3.0.0'
70+
flutter-version: "3.0.0"
7071

7172
- name: Build web
7273
run: |

.github/workflows/sqflite.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- release/**
77
pull_request:
88
paths-ignore:
9+
- "**/*.md"
910
- "logging/**"
1011
- "flutter/**"
1112
- "dio/**"

0 commit comments

Comments
 (0)