-
Notifications
You must be signed in to change notification settings - Fork 1
chore(workflow): add SDK parity dispatch workflow #14
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,17 @@ | ||
| name: SDK Parity Dispatch | ||
|
|
||
| on: | ||
| push: | ||
| paths: | ||
| - "src/**" | ||
| - "package.json" | ||
| pull_request: | ||
| paths: | ||
| - "src/**" | ||
| - "package.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
|
||
| secrets: inherit | ||
|
Comment on lines
+16
to
+17
|
||
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.
This workflow doesn’t declare explicit
permissions. When invoking external reusable workflows (especially alongside secret usage), it’s safer to set least-privilege permissions forGITHUB_TOKEN(for examplecontents: readand only additional scopes if required).