Skip to content

Commit

Permalink
ci: prevent builds from running when changes in documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Nuri <[email protected]>
  • Loading branch information
manusa committed May 19, 2023
1 parent 25fa632 commit b81e146
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ on:
branches:
- master
pull_request:
paths-ignore:
- 'doc/**'
- 'ide-config/**'
- '**.md'

concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
branches:
- master
pull_request:
paths-ignore:
- 'doc/**'
- 'ide-config/**'
- '**.md'
schedule:
- cron: '0 1 * * *' # Every day at 1

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/gobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ on:
branches:
- master
pull_request:
paths-ignore:
- 'doc/**'
- 'ide-config/**'
- '**.md'

concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/javadocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ on:
branches:
- master
pull_request:
paths-ignore:
- 'doc/**'
- 'ide-config/**'
- '**.md'

concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ on:
branches:
- master
pull_request:
paths-ignore:
- 'doc/**'
- 'ide-config/**'
- '**.md'

concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
branches:
- master
pull_request:
paths-ignore:
- 'doc/**'
- 'ide-config/**'
- '**.md'

concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
Expand Down

0 comments on commit b81e146

Please sign in to comment.