Skip to content

Commit

Permalink
Create Documentation Required Checks workflow (#1423)
Browse files Browse the repository at this point in the history
  • Loading branch information
VeithMetro committed Oct 9, 2023
1 parent 15fb45d commit c1fe3a3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/Documentation Required Checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Documentation Required Checks

on:
push:
branches: ["master"]
paths:
- '!**'
- 'doc/**'
- 'docs/**'
- 'ReleaseNotes/**'
pull_request:
branches: ["master"]
paths:
- '!**'
- 'doc/**'
- 'docs/**'
- 'ReleaseNotes/**'

jobs:
Thunder:
runs-on: ubuntu-latest

strategy:
matrix:
build_type: [Debug, Release, MinSizeRel]

name: Build type - ${{matrix.build_type}}
steps:
- run: 'echo "Changes only to the documentation, so no build required" '

0 comments on commit c1fe3a3

Please sign in to comment.