From 4645b89b51dce71d1a096e6b018c4e90c38ad60f Mon Sep 17 00:00:00 2001 From: Sami Salih Ibrahimbas Date: Wed, 8 Apr 2026 23:29:15 +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 Java source files and pom.xml. - Utilizes a reusable workflow from tapsilat/tapsilat-sdk-parity. - Inherits secrets for secure operations. --- .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..daf2c77 --- /dev/null +++ b/.github/workflows/sdk-parity-dispatch.yml @@ -0,0 +1,17 @@ +name: SDK Parity Dispatch + +on: + push: + paths: + - "src/main/java/**" + - "pom.xml" + pull_request: + paths: + - "src/main/java/**" + - "pom.xml" + workflow_dispatch: + +jobs: + parity-dispatch: + uses: tapsilat/tapsilat-sdk-parity/.github/workflows/reusable-sdk-parity-dispatch.yml@main + secrets: inherit