From ffa5c61040255172449b7145f5a6cedcf6708cb1 Mon Sep 17 00:00:00 2001 From: Sami Salih Ibrahimbas Date: Wed, 8 Apr 2026 23:29:23 +0300 Subject: [PATCH] chore(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 `src` directory and `composer.json`. - Utilizes a reusable workflow from the tapsilat/tapsilat-sdk-parity repository. --- .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..c424932 --- /dev/null +++ b/.github/workflows/sdk-parity-dispatch.yml @@ -0,0 +1,17 @@ +name: SDK Parity Dispatch + +on: + push: + paths: + - "src/**" + - "composer.json" + pull_request: + paths: + - "src/**" + - "composer.json" + workflow_dispatch: + +jobs: + parity-dispatch: + uses: tapsilat/tapsilat-sdk-parity/.github/workflows/reusable-sdk-parity-dispatch.yml@main + secrets: inherit