Skip to content

Commit

Permalink
Fix paths-ignore for ci-examples.yml (#7138)
Browse files Browse the repository at this point in the history
Currently, `junit4`, `junit5`, `spock` at `docs/examples` don't run
because of the `paths-ignore: 'docs'`. It is important to run those
projects only when they are touched.
  • Loading branch information
eddumelendez committed Jun 5, 2023
1 parent 1754231 commit 59cdf19
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/ci-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,25 @@ name: CI-Examples
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'docs/**/*.css'
- 'docs/**/*.html'
- 'docs/**/*.ico'
- 'docs/**/*.md'
- 'docs/**/*.png'
- 'docs/**/*.svg'
- 'mkdocs.yml'
- 'README.md'
- 'RELEASING.md'
push:
branches: [ main ]
paths-ignore:
- 'docs/**'
- 'docs/**/*.css'
- 'docs/**/*.html'
- 'docs/**/*.ico'
- 'docs/**/*.md'
- 'docs/**/*.png'
- 'docs/**/*.svg'
- 'docs/**/*.md'
- 'mkdocs.yml'
- 'README.md'
- 'RELEASING.md'
Expand Down

0 comments on commit 59cdf19

Please sign in to comment.