From e366c58d643132837db0eca9e4bb08bb4e26dfa9 Mon Sep 17 00:00:00 2001 From: Sami Salih Ibrahimbas Date: Wed, 8 Apr 2026 23:29:02 +0300 Subject: [PATCH] feat(workflow): add SDK parity dispatch workflow - Introduced a new GitHub Actions workflow for SDK parity dispatch. - Triggers on push and pull request events for specific paths. - Utilizes a reusable workflow from tapsilat/tapsilat-sdk-parity. --- .github/workflows/sdk-parity-dispatch.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/sdk-parity-dispatch.yml diff --git a/.github/workflows/sdk-parity-dispatch.yml b/.github/workflows/sdk-parity-dispatch.yml new file mode 100644 index 0000000..977c76a --- /dev/null +++ b/.github/workflows/sdk-parity-dispatch.yml @@ -0,0 +1,19 @@ +name: SDK Parity Dispatch + +on: + push: + paths: + - "src/**" + - "build.zig" + - "build.zig.zon" + pull_request: + paths: + - "src/**" + - "build.zig" + - "build.zig.zon" + workflow_dispatch: + +jobs: + parity-dispatch: + uses: tapsilat/tapsilat-sdk-parity/.github/workflows/reusable-sdk-parity-dispatch.yml@main + secrets: inherit