From 6f4ed5fd6b6d013937d31b3e817aa2b855b59ab8 Mon Sep 17 00:00:00 2001 From: Sami Salih Ibrahimbas Date: Wed, 8 Apr 2026 23:29:06 +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 changes in the 'lib' directory. - Utilizes a reusable workflow from tapsilat/tapsilat-sdk-parity. - Inherits secrets for secure operations. --- .github/workflows/sdk-parity-dispatch.yml | 15 +++++++++++++++ 1 file changed, 15 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..d3a7d6b --- /dev/null +++ b/.github/workflows/sdk-parity-dispatch.yml @@ -0,0 +1,15 @@ +name: SDK Parity Dispatch + +on: + push: + paths: + - "lib/**" + pull_request: + paths: + - "lib/**" + workflow_dispatch: + +jobs: + parity-dispatch: + uses: tapsilat/tapsilat-sdk-parity/.github/workflows/reusable-sdk-parity-dispatch.yml@main + secrets: inherit