Skip to content

Commit 4bd4e2f

Browse files
committed
.github/workflows: Don't run CI checks for markdown-only updates
Update the ci-prefixed workflows and ensure that CI isn't running when only markdown files are updated.
1 parent 966ce43 commit 4bd4e2f

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
- '**'
66
- '!doc/contributors/**'
77
- '!doc/design/**'
8+
- '**/*.md'
89
jobs:
910
image:
1011
runs-on: ubuntu-latest

.github/workflows/e2e-kind.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
- '**'
66
- '!doc/contributors/**'
77
- '!doc/design/**'
8+
- '**/*.md'
89
schedule:
910
- cron: '0 0 * * *' # daily to pick up releases
1011
jobs:

.github/workflows/e2e-minikube.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
- '**'
66
- '!doc/contributors/**'
77
- '!doc/design/**'
8+
- '**/*.md'
89
schedule:
910
- cron: '0 0 * * *' # daily to pick up releases
1011
jobs:

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
paths:
88
- '**'
99
- '!doc/**'
10+
- '**/*.md'
1011
jobs:
1112
e2e-tests:
1213
runs-on: ubuntu-latest

.github/workflows/unit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
paths:
88
- '**'
99
- '!doc/**'
10+
- '**/*.md'
1011
jobs:
1112
unit:
1213
runs-on: ubuntu-latest

.github/workflows/verify.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
paths:
88
- '**'
99
- '!doc/**'
10+
- '**/*.md'
1011
jobs:
1112
verify:
1213
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)