CI: add hook and notification schema paths to readme rpc sync
What changed, and why it matters
This commit is a minor GitHub Actions workflow update. It tells the project's automated documentation checker to also run when JSON schema files inside two new subdirectories ('hook' and 'notification') are changed. There is no change to the actual Lightning node software, no user-facing behavior change, and no security relevance.
No action required. This is a benign CI maintenance change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds two path patterns to the ‘paths’ filter of a GitHub Actions workflow trigger. The workflow, readme-rpc-sync.yml, previously ran only when files under doc/schemas/.json or certain man-page markdown files changed. The commit extends that to include doc/schemas/hook/.json and doc/schemas/notification/*.json. This is purely a CI configuration change affecting when documentation synchronization jobs run.
Changed components
.github/workflows/readme-rpc-sync.ymlInspect captured patch +2 / −0
diff --git a/.github/workflows/readme-rpc-sync.yml b/.github/workflows/readme-rpc-sync.yml
index d0995378..c4f7d656 100644
--- a/.github/workflows/readme-rpc-sync.yml
+++ b/.github/workflows/readme-rpc-sync.yml
@@ -6,6 +6,8 @@ on:
- 'master'
paths:
- 'doc/schemas/*.json'
+ - 'doc/schemas/hook/*.json'
+ - 'doc/schemas/notification/*.json'
- 'doc/*.1.md'
- 'doc/*.5.md'
- 'doc/*.8.md'
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.