CI: set readme branch name to stable
What changed, and why it matters
This commit only changes the branch name used by an automated documentation-publishing workflow from '1' to 'stable'. It affects how Core Lightning's public guides are synced to a documentation hosting service (ReadMe). There is no change to the actual Lightning node software, no handling of funds, no network behavior, and no security-sensitive code.
No security action needed. Review as ordinary CI/documentation maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff updates .github/workflows/rdme-docs-sync.yml, a GitHub Actions workflow that uploads documentation directories to ReadMe using the readmeio/rdme@v10 action. Each upload command’s –branch argument is changed from ‘1’ to ‘stable’. The README_API_KEY secret usage is unchanged. No application code, cryptography, networking, or authorization logic is modified.
Changed components
.github/workflows/rdme-docs-sync.ymlInspect captured patch +5 / −5
diff --git a/.github/workflows/rdme-docs-sync.yml b/.github/workflows/rdme-docs-sync.yml
index 5d9dbd2a..2efccb92 100644
--- a/.github/workflows/rdme-docs-sync.yml
+++ b/.github/workflows/rdme-docs-sync.yml
@@ -18,24 +18,24 @@ jobs:
- name: Sync doc/getting-started/ 🚀
uses: readmeio/rdme@v10
with:
- rdme: docs upload ./doc/getting-started --key=${{ secrets.README_API_KEY }} --branch=1
+ rdme: docs upload ./doc/getting-started --key=${{ secrets.README_API_KEY }} --branch=stable
- name: Sync doc/beginners-guide/ 🚀
uses: readmeio/rdme@v10
with:
- rdme: docs upload ./doc/beginners-guide --key=${{ secrets.README_API_KEY }} --branch=1
+ rdme: docs upload ./doc/beginners-guide --key=${{ secrets.README_API_KEY }} --branch=stable
- name: Sync doc/node-operators-guide/ 🚀
uses: readmeio/rdme@v10
with:
- rdme: docs upload ./doc/node-operators-guide --key=${{ secrets.README_API_KEY }} --branch=1
+ rdme: docs upload ./doc/node-operators-guide --key=${{ secrets.README_API_KEY }} --branch=stable
- name: Sync doc/developers-guide/ 🚀
uses: readmeio/rdme@v10
with:
- rdme: docs upload ./doc/developers-guide --key=${{ secrets.README_API_KEY }} --branch=1
+ rdme: docs upload ./doc/developers-guide --key=${{ secrets.README_API_KEY }} --branch=stable
- name: Sync doc/contributing-to-core-lightning/ 🚀
uses: readmeio/rdme@v10
with:
- rdme: docs upload ./doc/contribute-to-core-lightning --key=${{ secrets.README_API_KEY }} --branch=1
+ rdme: docs upload ./doc/contribute-to-core-lightning --key=${{ secrets.README_API_KEY }} --branch=stable
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.