-
Notifications
You must be signed in to change notification settings - Fork 3.2k
60 lines (56 loc) · 1.93 KB
/
release-please-libnpmdiff.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# This file is automatically added by @npmcli/template-oss. Do not edit.
name: Release Please - libnpmdiff
on:
push:
paths:
- workspaces/libnpmdiff/**
branches:
- main
- latest
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
monorepo-tags: true
path: workspaces/libnpmdiff
# name can be removed after this is merged
# https://github.com/google-github-actions/release-please-action/pull/459
package-name: "libnpmdiff"
changelog-types: >
[
{"type":"feat","section":"Features","hidden":false},
{"type":"fix","section":"Bug Fixes","hidden":false},
{"type":"docs","section":"Documentation","hidden":false},
{"type":"deps","section":"Dependencies","hidden":false},
{"type":"chore","hidden":true}
]
- uses: actions/checkout@v3
- name: Setup git user
run: |
git config --global user.email "npm-cli+bot@github.com"
git config --global user.name "npm CLI robot"
- uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Update npm to latest
run: npm i --prefer-online --no-fund --no-audit -g npm@latest
- run: npm -v
- name: Update package-lock.json and commit
if: steps.release.outputs.pr
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh pr checkout ${{ fromJSON(steps.release.outputs.pr).number }}
npm run resetdeps
title="${{ fromJSON(steps.release.outputs.pr).title }}"
# get the version from the pr title
# get everything after the last space
git commit -am "deps: libnpmdiff@${title##* }"
git push