pytest: add tests for channel_state_changed into the CLOSED state. #374
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ReadMe Sync | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| paths: | |
| - 'doc/**' | |
| workflow_dispatch: | |
| jobs: | |
| rdme-docs-sync: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Check out repo 📚 | |
| uses: actions/checkout@v4 | |
| - name: Sync doc/getting-started/ 🚀 | |
| uses: readmeio/rdme@v10 | |
| with: | |
| rdme: docs upload ./doc/getting-started --key=${{ secrets.README_API_KEY }} --branch=1 | |
| - name: Sync doc/beginners-guide/ 🚀 | |
| uses: readmeio/rdme@v10 | |
| with: | |
| rdme: docs upload ./doc/beginners-guide --key=${{ secrets.README_API_KEY }} --branch=1 | |
| - 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 | |
| - name: Sync doc/developers-guide/ 🚀 | |
| uses: readmeio/rdme@v10 | |
| with: | |
| rdme: docs upload ./doc/developers-guide --key=${{ secrets.README_API_KEY }} --branch=1 | |
| - 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 |