File tree Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 3131 - name : Spellcheck
3232 run : npm run check:spelling
3333
34+ - name : Lint GitHub Actions
35+ uses : docker://rhysd/actionlint:latest
36+ with :
37+ args : -color
38+
3439 checkForCommonlyIgnoredFiles :
3540 name : Check for commonly ignored files
3641 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 33 workflow_call :
44 inputs :
55 pullRequestJSON :
6+ description : String that contain JSON payload for `pull_request` event.
67 required : true
78 type : string
89 secrets :
910 NPM_CANARY_PR_PUBLISH_TOKEN :
11+ description : NPM token to publish canary release.
1012 required : true
1113jobs :
1214 build-npm-dist :
Original file line number Diff line number Diff line change 33 workflow_call :
44 inputs :
55 pullRequestJSON :
6+ description : String that contain JSON payload for `pull_request` event.
67 required : true
78 type : string
89jobs :
1920 - name : Deepen cloned repo
2021 env :
2122 BASE_SHA : ${{ fromJSON(inputs.pullRequestJSON).base.sha }}
22- run : ' git fetch --depth=1 origin $BASE_SHA:refs/tags/BASE'
23+ run : ' git fetch --depth=1 origin " $BASE_SHA:refs/tags/BASE" '
2324
2425 - name : Setup Node.js
2526 uses : actions/setup-node@v2
Original file line number Diff line number Diff line change 33 workflow_call :
44 inputs :
55 environment :
6+ description : Environment to publish under
67 required : true
78 type : string
89 artifact_name :
10+ description : Artifact name
911 required : true
1012 type : string
1113 target_branch :
14+ description : Target branch
1215 required : true
1316 type : string
1417 commit_message :
18+ description : Commit message
1519 required : true
1620 type : string
1721jobs :
Original file line number Diff line number Diff line change 1616 - name : Deepen cloned repo
1717 env :
1818 BASE_SHA : ${{ github.event.pull_request.base.sha }}
19- run : ' git fetch --depth=1 origin $BASE_SHA:refs/tags/BASE'
19+ run : ' git fetch --depth=1 origin " $BASE_SHA:refs/tags/BASE" '
2020
2121 - name : Setup Node.js
2222 uses : actions/setup-node@v2
You can’t perform that action at this time.
0 commit comments