Skip to content

Commit

Permalink
Ignore non-code changes in CI for PRs
Browse files Browse the repository at this point in the history
test doc ci trigger


try again?


more experimenting
  • Loading branch information
jeff-mccoy committed Jul 7, 2022
1 parent c15634b commit 3ba62a6
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 3 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/skip-k3d.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: e2e-k3d
on:
pull_request:
paths:
- '**.md'
- '**.jpg'
- '**.png'
- '**.gif'
- '**.svg'
- 'adr/**'
- 'docs/**'

jobs:
ignore:
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required, non-code changes only." '
17 changes: 17 additions & 0 deletions .github/workflows/skip-k3s.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: e2e-k3s
on:
pull_request:
paths:
- '**.md'
- '**.jpg'
- '**.png'
- '**.gif'
- '**.svg'
- 'adr/**'
- 'docs/**'

jobs:
ignore:
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required, non-code changes only." '
17 changes: 17 additions & 0 deletions .github/workflows/skip-kind.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: e2e-kind
on:
pull_request:
paths:
- '**.md'
- '**.jpg'
- '**.png'
- '**.gif'
- '**.svg'
- 'adr/**'
- 'docs/**'

jobs:
ignore:
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required, non-code changes only." '
10 changes: 9 additions & 1 deletion .github/workflows/test-k3d.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: e2e-k3d
on:
- pull_request
pull_request:
paths-ignore:
- '**.md'
- '**.jpg'
- '**.png'
- '**.gif'
- '**.svg'
- 'adr/**'
- 'docs/**'

jobs:
build-and-test:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/test-k3s.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: e2e-k3s
on:
- pull_request
pull_request:
paths-ignore:
- '**.md'
- '**.jpg'
- '**.png'
- '**.gif'
- '**.svg'
- 'adr/**'
- 'docs/**'

jobs:
build-and-test:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/test-kind.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: e2e-kind
on:
- pull_request
pull_request:
paths-ignore:
- '**.md'
- '**.jpg'
- '**.png'
- '**.gif'
- '**.svg'
- 'adr/**'
- 'docs/**'

jobs:
build-and-test:
Expand Down

0 comments on commit 3ba62a6

Please sign in to comment.