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/**"
- "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
Comment on lines +15 to +16

Copilot AI Apr 8, 2026

Copy link

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 mutable. Because this job will execute code from another repository, it’s safer to pin to an immutable ref (a commit SHA or a version tag) to avoid unexpected changes running in this repo’s CI context.

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

Copilot AI Apr 8, 2026

Copy link

Choose a reason for hiding this comment

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

secrets: inherit forwards all repository/environment secrets to the called workflow. Given this job calls an external reusable workflow, consider passing only the specific secrets it needs (explicit mapping) and setting explicit minimal permissions for GITHUB_TOKEN to reduce blast radius.

Copilot uses AI. Check for mistakes.