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
15 changes: 15 additions & 0 deletions .github/workflows/sdk-parity-dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: SDK Parity Dispatch

on:
push:
paths:
- "lib/**"
Comment on lines +4 to +6
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.

on.push currently triggers for matching lib/** changes on pushes to any branch. Other workflows in this repo (e.g., .github/workflows/ci.yml) restrict push triggers to main; if that’s the intended pattern here too, add a branches: filter to avoid running this workflow on every feature-branch push.

Copilot uses AI. Check for mistakes.
pull_request:
paths:
- "lib/**"
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 is referenced via @main, which is a mutable ref and can change unexpectedly (and is a supply-chain risk). Prefer pinning to a version tag or a specific commit SHA (and update periodically) so runs are reproducible and safer.

Copilot uses AI. Check for mistakes.
secrets: inherit