Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/sdk-parity-dispatch.yml
Original file line number Diff line number Diff line change
@@ -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
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reusable workflow reference is pinned to a mutable branch (@main). For supply-chain safety and reproducibility, pin this uses: to an immutable ref (a tagged release) or a specific commit SHA, and update it intentionally when you want new behavior.

Copilot uses AI. Check for mistakes.
secrets: inherit
Comment on lines +16 to +17
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

secrets: inherit exposes all repository/environment secrets to the called workflow on push runs. Prefer explicitly passing only the specific secrets/inputs the reusable workflow needs to reduce blast radius if the upstream workflow changes or is compromised.

Copilot uses AI. Check for mistakes.