From 7b495664afe7308d0a595391239fc16dac0aaecc Mon Sep 17 00:00:00 2001 From: Marcelo Bezerra <23555060+mmosca@users.noreply.github.com> Date: Sat, 22 Jun 2024 14:36:37 +0200 Subject: [PATCH 1/2] Update bind_rx cli documentation --- docs/Cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Cli.md b/docs/Cli.md index b0cf7d20bfc..a3e18229fc0 100644 --- a/docs/Cli.md +++ b/docs/Cli.md @@ -71,7 +71,7 @@ While connected to the CLI, all Logical Switches are temporarily disabled (5.1.0 | `batch` | Start or end a batch of commands | | `battery_profile` | Change battery profile | | `beeper` | Show/set beeper (buzzer) [usage](Buzzer.md) | -| `bind_rx` | Initiate binding for RX SPI or SRXL2 | +| `bind_rx` | Initiate binding for SRXL2 or CRSF receivers | | `blackbox` | Configure blackbox fields | | `bootlog` | Show boot events | | `color` | Configure colors | From a8b0ff612cf0de184bc25287ce6a40433607b433 Mon Sep 17 00:00:00 2001 From: Marcelo Bezerra <23555060+mmosca@users.noreply.github.com> Date: Sat, 22 Jun 2024 14:44:31 +0200 Subject: [PATCH 2/2] Attempt at passing branch protection for non-code commits --- .github/workflows/non-code-change.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/non-code-change.yaml diff --git a/.github/workflows/non-code-change.yaml b/.github/workflows/non-code-change.yaml new file mode 100644 index 00000000000..5c30c6e6ead --- /dev/null +++ b/.github/workflows/non-code-change.yaml @@ -0,0 +1,25 @@ +name: Build firmware +# Don't enable CI on push, just on PR. If you +# are working on the main repo and want to trigger +# a CI build submit a draft PR. +on: + pull_request: + paths-ignore: + - 'src/**' + - '.github/**' + - 'cmake/**' + - 'lib/**' + - 'docs/Settings.md' + - 'CMakeLists.txt' + - '*.sh' + +jobs: + test: + #needs: [build] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Install dependencies + run: sudo apt-get update && sudo apt-get -y install ninja-build + - name: Run Tests + run: mkdir -p build && cd build && cmake -DTOOLCHAIN=none -G Ninja .. && ninja check