Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Park <daniel.park@endevors.io>2021-05-29 00:22:47 +0300
committerGitHub <noreply@github.com>2021-05-29 00:22:47 +0300
commitb4caf2862f05a153266db106b6cd5427e3eafca1 (patch)
treec10b83ae8e9c1892c155fb2338fdd7855e3ac687 /.github
parent685f4bee08772eb51d7c74d1bbf824f9fc207adf (diff)
chore: update deps workflow (#3332)
* chore: deps workflow * wip: test * wip: test * wip: test * wip: update repo to nodejs/node * wip: add jq parser
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/create-cli-deps-pr.yml18
1 files changed, 13 insertions, 5 deletions
diff --git a/.github/workflows/create-cli-deps-pr.yml b/.github/workflows/create-cli-deps-pr.yml
index b7b102413..ae73b9d3b 100644
--- a/.github/workflows/create-cli-deps-pr.yml
+++ b/.github/workflows/create-cli-deps-pr.yml
@@ -4,9 +4,10 @@ on:
workflow_dispatch:
inputs:
npmVersion:
- description: "NPM Version"
+ description: "6.x.x or latest"
required: true
- default: '"6.x.x" or "latest"'
+ default: 'latest'
+
jobs:
create-pull-request:
@@ -16,6 +17,12 @@ jobs:
NPM_VERSION: ${{ github.event.inputs.npmVersion }}
SUPPORT_BRANCH: "v14.x-staging"
steps:
+ - name: Update gh cli & install jq parser
+ run: |
+ sudo apt-get update -y
+ sudo apt update
+ sudo apt-get install -y jq
+ sudo apt install gh
- name: Checkout npm/node
uses: actions/checkout@v2
with:
@@ -66,7 +73,8 @@ jobs:
git add -A deps/npm
git commit -m "deps: upgrade npm to $npm_tag"
- git rebase --whitespace=fix HEAD^
+ git rebase --whitespace=fix master
git push origin "npm-$npm_tag"
- gh_release_body=`gh release view v"$npm_tag" -R npm/cli`
- gh pr create -R "nodejs/node" -B "$base_branch" -H "npm:npm-$npm_tag" --title "deps(cli): upgrade npm to $npm_tag" --body "$gh_release_body"
+ gh_release_body=`gh release view v"$npm_tag" -R npm/cli --json body | jq -r '.body'`
+
+ gh pr create -R "nodejs/node" -B "$base_branch" -H "npm:npm-$npm_tag" --title "deps: upgrade npm to $npm_tag" --body "$json_body"