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

release-please-libnpmteam.yml « workflows « .github - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2a65d02abe55c2b5f2127dd65a7427b0891e540 (plain)
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 - libnpmteam

on:
  push:
    paths:
      - workspaces/libnpmteam/**
    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/libnpmteam
          # name can be removed after this is merged
          # https://github.com/google-github-actions/release-please-action/pull/459
          package-name: "libnpmteam"
          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 "ops+robot@npmjs.com"
          git config --global user.name "npm team"
      - 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: libnpmteam@${title##* }"
          git push