mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
fix readme workflow (yet again) and test a dummy change (#6477)
This commit is contained in:
23
.github/workflows/rdme-docs-sync.yml
vendored
23
.github/workflows/rdme-docs-sync.yml
vendored
@@ -1,16 +1,14 @@
|
|||||||
name: ReadMe Sync
|
name: ReadMe Sync
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
push:
|
||||||
types:
|
|
||||||
- closed
|
|
||||||
branches:
|
branches:
|
||||||
- 'master'
|
- 'master'
|
||||||
paths:
|
paths:
|
||||||
- 'doc/'
|
- 'doc/**'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
rdme-docs:
|
rdme-docs-sync:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repo 📚
|
- name: Check out repo 📚
|
||||||
@@ -19,24 +17,29 @@ jobs:
|
|||||||
- name: Sync doc/getting-started/ 🚀
|
- name: Sync doc/getting-started/ 🚀
|
||||||
uses: readmeio/rdme@v8
|
uses: readmeio/rdme@v8
|
||||||
with:
|
with:
|
||||||
rdme: docs doc/getting-started --key=${{ secrets.README_API_KEY }} --version=1
|
README_API_KEY: ${{ secrets.README_API_KEY }}
|
||||||
|
rdme: docs doc/getting-started --key=$README_API_KEY --version=1
|
||||||
|
|
||||||
- name: Sync doc/beginners-guide/ 🚀
|
- name: Sync doc/beginners-guide/ 🚀
|
||||||
uses: readmeio/rdme@v8
|
uses: readmeio/rdme@v8
|
||||||
with:
|
with:
|
||||||
rdme: docs doc/beginners-guide --key=${{ secrets.README_API_KEY }} --version=1
|
README_API_KEY: ${{ secrets.README_API_KEY }}
|
||||||
|
rdme: docs doc/beginners-guide --key=$README_API_KEY --version=1
|
||||||
|
|
||||||
- name: Sync doc/node-operators-guide/ 🚀
|
- name: Sync doc/node-operators-guide/ 🚀
|
||||||
uses: readmeio/rdme@v8
|
uses: readmeio/rdme@v8
|
||||||
with:
|
with:
|
||||||
rdme: docs doc/node-operators-guide --key=${{ secrets.README_API_KEY }} --version=1
|
README_API_KEY: ${{ secrets.README_API_KEY }}
|
||||||
|
rdme: docs doc/node-operators-guide --key=$README_API_KEY --version=1
|
||||||
|
|
||||||
- name: Sync doc/developers-guide/ 🚀
|
- name: Sync doc/developers-guide/ 🚀
|
||||||
uses: readmeio/rdme@v8
|
uses: readmeio/rdme@v8
|
||||||
with:
|
with:
|
||||||
rdme: docs doc/developers-guide --key=${{ secrets.README_API_KEY }} --version=1
|
README_API_KEY: ${{ secrets.README_API_KEY }}
|
||||||
|
rdme: docs doc/developers-guide --key=$README_API_KEY --version=1
|
||||||
|
|
||||||
- name: Sync doc/contributing-to-core-lightning/ 🚀
|
- name: Sync doc/contributing-to-core-lightning/ 🚀
|
||||||
uses: readmeio/rdme@v8
|
uses: readmeio/rdme@v8
|
||||||
with:
|
with:
|
||||||
rdme: docs doc/contributing-to-core-lightning --key=${{ secrets.README_API_KEY }} --version=1
|
README_API_KEY: ${{ secrets.README_API_KEY }}
|
||||||
|
rdme: docs doc/contributing-to-core-lightning --key=$README_API_KEY --version=1
|
||||||
|
|||||||
@@ -76,4 +76,6 @@ Attaching 1 probe...
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Notice that due to a [limitation](https://github.com/iovisor/bpftrace/issues/305) in `bpftrace` you'll at most get the first 200 bytes of the payload. If you write your own exporter you'll be able to specify the size of the buffer that is being used, and can extract the entire span.
|
Notice that due to a [limitation](https://github.com/iovisor/bpftrace/issues/305) in `bpftrace` you'll at most get the first 200 bytes of the payload. If you write your own exporter you'll be able to specify the size of the buffer that is being used, and can extract the entire span.
|
||||||
|
|||||||
Reference in New Issue
Block a user