-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: pass checkout-token from deploy-storybook (#148)
* chore: pass checkout-token from deploy-storybook * chore: pass checkout-token from deploy-storybook
- Loading branch information
Showing
3 changed files
with
12 additions
and
0 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,6 @@ | ||
--- | ||
'davinci-github-actions': patch | ||
--- | ||
|
||
--- | ||
- pass checkout-token from deploy-storybook GH Action to yarn-install |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,9 @@ inputs: | |
description: Event number of the original pr, in case event number or issue number is not present. . | ||
required: false | ||
default: false | ||
checkout-token: | ||
description: Repository checkout access token `GITHUB_TOKEN`. Required for self hosted runners | ||
required: false | ||
|
||
runs: | ||
using: composite | ||
|
@@ -63,6 +66,8 @@ runs: | |
- name: Install Dependencies | ||
if: ${{ inputs.use-prebuilt-package == 'false' && inputs.use-prebuilt-image == 'false' }} | ||
uses: toptal/davinci-github-actions/[email protected] | ||
with: | ||
checkout-token: ${{ inputs.checkout-token }} | ||
|
||
- name: Generate Types | ||
if: ${{ inputs.generate-types-command != 'false' }} | ||
|