ci: Do not run CI jobs on documentation changes

main
Luis Díaz Más 3 years ago
parent b4348e74b0
commit 18ba4e575c

@ -2,7 +2,10 @@
# https://google.github.io/oss-fuzz/getting-started/continuous-integration/ # https://google.github.io/oss-fuzz/getting-started/continuous-integration/
name: CIFuzz name: CIFuzz
on: [pull_request] on:
pull_request:
paths-ignore:
- "*.md"
jobs: jobs:
Fuzzing: Fuzzing:
runs-on: ubuntu-latest runs-on: ubuntu-latest

@ -8,9 +8,13 @@ name: "CodeQL"
on: on:
push: push:
branches: [0.27-maintenance, main] branches: [0.27-maintenance, main]
paths-ignore:
- "*.md"
pull_request: pull_request:
# The branches below must be a subset of the branches above # The branches below must be a subset of the branches above
branches: [0.27-maintenance, main] branches: [0.27-maintenance, main]
paths-ignore:
- "*.md"
workflow_dispatch: workflow_dispatch:
jobs: jobs:

@ -6,6 +6,8 @@ name: On PRs - Linux-Ubuntu Quick Fuzz
on: on:
pull_request: pull_request:
paths-ignore:
- "*.md"
workflow_dispatch: workflow_dispatch:
jobs: jobs:

@ -1,6 +1,9 @@
name: On PRs - Linux-Ubuntu Matrix name: On PRs - Linux-Ubuntu Matrix
on: [pull_request] on:
pull_request:
paths-ignore:
- "*.md"
jobs: jobs:
Linux: Linux:

@ -3,6 +3,8 @@ name: On PRs - Linux Special Builds
on: on:
workflow_dispatch: workflow_dispatch:
pull_request: pull_request:
paths-ignore:
- "*.md"
jobs: jobs:
special_debugRelease: special_debugRelease:

@ -1,6 +1,9 @@
name: On PRs - Mac Matrix name: On PRs - Mac Matrix
on: [pull_request] on:
pull_request:
paths-ignore:
- "*.md"
jobs: jobs:
MacOS: MacOS:

@ -2,11 +2,15 @@ name: On PRs - Windows Matrix
on: on:
pull_request: pull_request:
paths-ignore:
- "*.md"
push: push:
branches: branches:
- main - main
tags: tags:
- '!*' - '!*'
paths-ignore:
- "*.md"
jobs: jobs:
windows: windows:

@ -3,7 +3,11 @@
# PRs, we will test things more intensively :) # PRs, we will test things more intensively :)
# - Only running UnitTests and not regression tests # - Only running UnitTests and not regression tests
on: [push] on:
push:
paths-ignore:
- "*.md"
name: On PUSH - Basic CI for main platforms name: On PUSH - Basic CI for main platforms
jobs: jobs:

@ -6,6 +6,8 @@ on:
- main - main
tags: tags:
- '!*' - '!*'
paths-ignore:
- "*.md"
jobs: jobs:
special_debugRelease: special_debugRelease:

Loading…
Cancel
Save