From abd2028ed2e474111338841ff1950feb58de0b4c Mon Sep 17 00:00:00 2001 From: Sami Salih Ibrahimbas Date: Wed, 8 Apr 2026 23:29:04 +0300 Subject: [PATCH] feat(workflow): add SDK Parity Dispatch workflow - Introduced a new GitHub Actions workflow for SDK parity dispatch. - Configured to trigger on push and pull request events for specific paths. - Utilizes a reusable workflow from tapsilat/tapsilat-sdk-parity. --- .github/workflows/sdk-parity-dispatch.yml | 17 +++++++++++++++++ 1 file changed, 17 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..7d28849 --- /dev/null +++ b/.github/workflows/sdk-parity-dispatch.yml @@ -0,0 +1,17 @@ +name: SDK Parity Dispatch + +on: + push: + paths: + - "src/**" + - "Cargo.toml" + pull_request: + paths: + - "src/**" + - "Cargo.toml" + workflow_dispatch: + +jobs: + parity-dispatch: + uses: tapsilat/tapsilat-sdk-parity/.github/workflows/reusable-sdk-parity-dispatch.yml@main + secrets: inherit