-
Notifications
You must be signed in to change notification settings - Fork 6
51 lines (44 loc) · 1.43 KB
/
bump-packages.yaml
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
name: Bump packages
on:
workflow_dispatch:
push:
branches:
- main
jobs:
update_generated_files:
name: Bump packages
runs-on: ubuntu-latest
steps:
- uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
id: app-token
with:
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
# don't checkout a detatched HEAD
ref: ${{ github.head_ref }}
token: ${{ steps.app-token.outputs.token }}
# this is important so git log can pick up on
# the whole history to generate the list of AUTHORS
fetch-depth: "0"
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "npm"
- name: Install npm
run: npm install -g npm@8
- name: Install Dependencies
run: |
npm -v
npm ci
# make sure precommit.js is compiled
# make sure saslprep is compiled on Linux (same as the publish step), see NODE-6064
npm run bootstrap-ci -- --scope @mongodb-js/monorepo-tools --scope @mongodb-js/saslprep --stream --include-dependencies
- name: Bump packages
run: |
npm run bump-packages
git add .
git commit --no-allow-empty -m "chore(ci): bump packages" || true
git push