Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
38 changes: 38 additions & 0 deletions .github/workflows/Validate_File_Contents.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Validate contents

on:
workflow_dispatch: # manual trigger

push:
paths:
- ".github/workflows/**"
- "examples/**/*.h*"
- "examples/**/*.c*"
- "plugin_*/**/*.c*"
- "plugin_*/**/*.h*"
- "plugin_*/**/*.c*"
- "shared/**/*.h*"
- "shared/**/*.c*"

pull_request:
paths:
- ".github/workflows/**"
- "examples/**/*.h*"
- "examples/**/*.c*"
- "plugin_*/**/*.c*"
- "plugin_*/**/*.h*"
- "plugin_*/**/*.c*"
- "shared/**/*.h*"
- "shared/**/*.c*"

jobs:
Validate_contents:
name: Validate contents
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v6

- name: Check files
run: node .github/workflows/scripts/Validate_Contents.js "github"
Loading