From 2458fbadffbb22cc6d540808fe3e424766a88953 Mon Sep 17 00:00:00 2001 From: AJ Date: Tue, 27 Aug 2024 11:47:52 -0400 Subject: [PATCH 1/2] feat: add action to check links in the readme --- .github/workflows/links-check.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/links-check.yml diff --git a/.github/workflows/links-check.yml b/.github/workflows/links-check.yml new file mode 100644 index 0000000000..5c9fd00b76 --- /dev/null +++ b/.github/workflows/links-check.yml @@ -0,0 +1,21 @@ +name: Link Checker + +on: + repository_dispatch: + workflow_dispatch: + schedule: + - cron: "0 0 * * *" + +jobs: + linkChecker: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Link Checker + uses: lycheeverse/lychee-action@v1.8.0 + with: + fail: true + args: --exclude-mail --exclude .+localhost.+ README.md + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} From 5c968cac0b70e28f34ce9ee5a101ee6c29793ed8 Mon Sep 17 00:00:00 2001 From: AJ Date: Tue, 27 Aug 2024 11:50:09 -0400 Subject: [PATCH 2/2] fix: update broken link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 06949a3e3f..655159ca4a 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Use **Zilla** as a: | [Async workflows for sync microservices →](https://github.com/aklivity/zilla-examples/tree/main/http.kafka.async) | Make request-response microservice communication asynchronous by routing it over a pair of Kafka topics. | | [Create an event-mesh →](https://www.aklivity.io/post/end-to-end-streaming-between-grpc-services-via-kafka) | Integrate mesh and event-driven microservices by routing connectivity through Kafka. Make Kafka look like a gRPC/REST server or gRPC client. | | [Secure a Server Sent Event (SSE) API →](https://github.com/aklivity/zilla-examples/tree/main/sse.proxy.jwt) | Secure an SSE API by adding JWT-based Continous Authorization. | -| [Validate MQTT via AsyncAPI →](https://github.com/aklivity/zilla-examples/tree/main/mqtt.proxy.asyncapi) | Enforce an AsyncAPI schema for messages going into an MQTT broker. | +| [Validate MQTT via AsyncAPI →](https://github.com/aklivity/zilla-examples/tree/main/asyncapi.mqtt.kafka.proxy) | Enforce an AsyncAPI schema for messages going into an MQTT broker. | | **Much more!** | Check out all the [Zilla Demos](https://github.com/aklivity/zilla-demos) and [Zilla Examples](https://github.com/aklivity/zilla-examples). | ## Get started in 60 seconds