-
Notifications
You must be signed in to change notification settings - Fork 38
38 lines (36 loc) · 1.18 KB
/
deps.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Update package
on:
workflow_dispatch:
inputs:
package:
description: 'Package name'
required: true
type: string
version:
description: 'Package version'
required: true
type: string
default: "latest"
jobs:
prerelease:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node 18
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- run: npm ci
- name: Update package
run: npm i ${{ inputs.package }}@${{ inputs.version }}
- name: Create and publish PR
run: |
VERSION=$(npm explore --no-workspaces @diplodoc/transform "node -pe 'require(\"./package.json\").version'" --shell sh)
git push -f origin :ci/update-deps/${{ inputs.package }}-$VERSION
git checkout -b ci/update-deps/${{ inputs.package }}-$VERSION
git add package.json package-lock.json
git commit -m "deps: Update @diplodoc/transform to $VERSION"
git push -u origin/ci/update-deps/${{ inputs.package }}-$VERSION
gh pr create -f