Skip to content

Commit 68e3e62

Browse files
committed
fix naming
1 parent 69c8d6e commit 68e3e62

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/bump-auxiliary-packages.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Bump auxiliary packages
1+
name: Bump Auxiliary Packages
22
on:
33
workflow_dispatch:
44
push:
@@ -53,4 +53,4 @@ jobs:
5353
title: "chore(release): bump auxiliary packages"
5454
labels: no-title-validation
5555
body: |
56-
- Bump package versions
56+
- Bumps auxiliary package versions. Merging will trigger a release of these packages.

.github/workflows/release-auxiliary-packages.yml .github/workflows/publish-auxiliary-packages.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
publish:
1414
if: |
1515
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')
1717
1818
runs-on: ubuntu-latest
1919

@@ -51,5 +51,5 @@ jobs:
5151
npm config list
5252
echo "Publishing packages as $(npm whoami)"
5353
git update-index --assume-unchanged .npmrc
54-
npm run publish-packages
54+
npm run publish-auxiliary
5555

packages/build/src/npm-packages/bump.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { spawnSync } from '../helpers';
22
import {
3-
MONGOSH_RELEASE_ONLY_PACKAGES,
3+
EXCLUDE_RELEASE_PACKAGES,
44
MONGOSH_RELEASE_PACKAGES,
55
PROJECT_ROOT,
66
} from './constants';
@@ -66,7 +66,7 @@ export function bumpIndependentPackages() {
6666
env: {
6767
...process.env,
6868
SKIP_BUMP_PACKAGES: [
69-
...MONGOSH_RELEASE_ONLY_PACKAGES,
69+
...EXCLUDE_RELEASE_PACKAGES,
7070
...MONGOSH_RELEASE_PACKAGES,
7171
].join(','),
7272
},

0 commit comments

Comments
 (0)