-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: get json data read from file feat: jq action wrapper for 'jq' CLI utility feat: add hashfile-search-path for node cache merge v4-beta to v4 --------- Co-authored-by: Korenevskiy Denis <[email protected]>
- Loading branch information
1 parent
16b8a07
commit 730c6b0
Showing
4 changed files
with
49 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Repository Dispatch | ||
author: 'MiLaboratories' | ||
description: | | ||
Create a repository dispatch event | ||
See original action peter-evans/repository-dispatch/ | ||
inputs: | ||
token: | ||
description: 'GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT)' | ||
default: ${{ github.token }} | ||
repository: | ||
description: 'The full name of the repository to send the dispatch.' | ||
default: ${{ github.repository }} | ||
event-type: | ||
description: 'A custom webhook event name.' | ||
required: true | ||
client-payload: | ||
description: 'JSON payload with extra information about the webhook event that your action or worklow may use.' | ||
default: '{}' | ||
|
||
runs: | ||
using: "composite" | ||
|
||
steps: | ||
- name: Repository Dispatch | ||
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 | ||
with: | ||
token: ${{ inputs.token }} | ||
repository: ${{ inputs.repository }} | ||
event-type: ${{ inputs.event-type }} | ||
client-payload: ${{ inputs.client-payload }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters