File tree 3 files changed +6
-6
lines changed
packages/build/src/npm-packages
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- name : Bump auxiliary packages
1
+ name : Bump Auxiliary Packages
2
2
on :
3
3
workflow_dispatch :
4
4
push :
53
53
title : " chore(release): bump auxiliary packages"
54
54
labels : no-title-validation
55
55
body : |
56
- - Bump package versions
56
+ - Bumps auxiliary package versions. Merging will trigger a release of these packages.
Original file line number Diff line number Diff line change 13
13
publish :
14
14
if : |
15
15
github.event_name == 'workflow_dispatch' ||
16
- startsWith(github.event.head_commit.message, 'chore(release): bump package versions')
16
+ startsWith(github.event.head_commit.message, 'chore(release): bump auxiliary package versions')
17
17
18
18
runs-on : ubuntu-latest
19
19
51
51
npm config list
52
52
echo "Publishing packages as $(npm whoami)"
53
53
git update-index --assume-unchanged .npmrc
54
- npm run publish-packages
54
+ npm run publish-auxiliary
55
55
Original file line number Diff line number Diff line change 1
1
import { spawnSync } from '../helpers' ;
2
2
import {
3
- MONGOSH_RELEASE_ONLY_PACKAGES ,
3
+ EXCLUDE_RELEASE_PACKAGES ,
4
4
MONGOSH_RELEASE_PACKAGES ,
5
5
PROJECT_ROOT ,
6
6
} from './constants' ;
@@ -66,7 +66,7 @@ export function bumpIndependentPackages() {
66
66
env : {
67
67
...process . env ,
68
68
SKIP_BUMP_PACKAGES : [
69
- ...MONGOSH_RELEASE_ONLY_PACKAGES ,
69
+ ...EXCLUDE_RELEASE_PACKAGES ,
70
70
...MONGOSH_RELEASE_PACKAGES ,
71
71
] . join ( ',' ) ,
72
72
} ,
You can’t perform that action at this time.
0 commit comments