From 1ad849a3b7a897aa7e68909adff03b826ab68f01 Mon Sep 17 00:00:00 2001 From: Christoph Koehler Date: Sun, 9 Feb 2025 13:24:07 -0700 Subject: [PATCH] chore(deps): update release-plz action Maybe it'll fix the missing changelog entry? --- .github/workflows/cd.yaml | 2 +- README.md | 39 --------------------------------------- 2 files changed, 1 insertion(+), 40 deletions(-) delete mode 100644 README.md diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 50f5a1f..ca39e0c 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -26,7 +26,7 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Run release-plz - uses: MarcoIeni/release-plz-action@v0.5.92 + uses: MarcoIeni/release-plz-action@v0.5.94 env: GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }} CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} diff --git a/README.md b/README.md deleted file mode 100644 index df82f5b..0000000 --- a/README.md +++ /dev/null @@ -1,39 +0,0 @@ -# Probe [![Continuous Integration](https://github.com/ckoehler/Probe/actions/workflows/ci.yml/badge.svg)](https://github.com/ckoehler/Probe/actions/workflows/ci.yml) [![Continuous Deployment](https://github.com/ckoehler/Probe/actions/workflows/cd.yaml/badge.svg)](https://github.com/ckoehler/Probe/actions/workflows/cd.yaml) [![Release](https://github.com/ckoehler/Probe/actions/workflows/release.yml/badge.svg)](https://github.com/ckoehler/Probe/actions/workflows/release.yml) - -Probe is a TUI ZMQ PUB/SUB monitor and debugger. - - - -![screenshot](assets/screen1.png) - -# Keyboard Shortcuts - -| Key | Action | -| ---- | ----- | -| q | Quit | -| h, Left | Previous Tab | -| l, Right | Next Tab | -| j | Next Probe | -| k | Previous Probe | -| \ | Show Details for selected probe | - -# Configuration - -Probe looks for a `probe.toml` file to know what to do. The format is very simple, just an array of one or more `[[probes]]`: - -```toml -[[probes]] -address = "tcp://127.0.0.1:5556" -name = "Probe 1" -[[probes]] -address = "tcp://127.0.0.1:5555" -name = "Probe 2" -filter = "2" -``` - - -| Config | Meaning | -|--------------- | --------------- | -| `address` | The ZMQ socket to subscribe to | -| `name` | The name of this probe, shown in the UI | -| `filter` | Optional regex filter, applied to the ZMQ message body. Default: `.*` |