Don't run the following GitHub workflows on documentation only
changes:
- cifuzz
- codeql
- formatting
- rust
- scan-build
name: CIFuzz
-on: [pull_request]
+
+on:
+ pull_request:
+ paths-ignore:
+ - "doc/**"
+
permissions: read-all
jobs:
Fuzzing:
on:
push:
branches: [ master ]
+ paths-ignore:
+ - "doc/**"
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
+ paths-ignore:
+ - "doc/**"
schedule:
- cron: '18 21 * * 1'
branches-ignore:
- 'master'
- 'master-*'
+ paths-ignore:
+ - "doc/**"
pull_request:
+ paths-ignore:
+ - "doc/**"
permissions: read-all
name: Check Rust
on:
- - push
- - pull_request
+ push:
+ paths-ignore:
+ - "doc/**"
+ pull_request:
+ paths-ignore:
+ - "doc/**"
permissions:
contents: read # to fetch code (actions/checkout)
name: Scan-build
on:
- - push
- - pull_request
+ push:
+ paths-ignore:
+ - "doc/**"
+ pull_request:
+ paths-ignore:
+ - "doc/**"
jobs:
scan-build: