-
Notifications
You must be signed in to change notification settings - Fork 0
feat(workflow): add SDK parity dispatch workflow #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| name: SDK Parity Dispatch | ||
|
|
||
| on: | ||
| push: | ||
| paths: | ||
| - "src/**" | ||
| - "build.zig" | ||
| - "build.zig.zon" | ||
| pull_request: | ||
| paths: | ||
| - "src/**" | ||
| - "build.zig" | ||
| - "build.zig.zon" | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| parity-dispatch: | ||
| uses: tapsilat/tapsilat-sdk-parity/.github/workflows/reusable-sdk-parity-dispatch.yml@main | ||
| secrets: inherit | ||
|
Comment on lines
+17
to
+19
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pushis configured without abranchesfilter, so this workflow will run on pushes to any branch (and path filters are not evaluated for tag pushes). If the intent is to only dispatch parity checks for the default branch (as in.github/workflows/test.yml), add an explicitbranches: [main](and/ortags-ignore) to avoid unexpected dispatches.