fix(compass-crud): persist modified document value COMPASS-8373 (#6404) #1976
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bump packages | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
update_generated_files: | |
name: Bump packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# don't checkout a detatched HEAD | |
ref: ${{ github.head_ref }} | |
# this is important so git log can pick up on | |
# the whole history to generate the list of AUTHORS | |
fetch-depth: '0' | |
- name: Setup git | |
run: | | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.16.0 | |
cache: 'npm' | |
- name: Install [email protected] | |
run: | | |
npm install -g [email protected] | |
- name: Install Dependencies | |
run: | | |
npm -v | |
npm ci | |
- name: Bump packages | |
env: | |
LAST_BUMP_COMMIT_MESSAGE: 'chore(release): bump package versions' | |
SKIP_BUMP_PACKAGES: 'mongodb-compass' | |
run: | | |
npm run bump-packages | |
git add . | |
git commit --no-allow-empty -m "$LAST_BUMP_COMMIT_MESSAGE" || true | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.SVC_DEVTOOLSBOT_TOKEN }} | |
commit-message: 'chore(release): bump package versions' | |
branch: ci/bump-packages | |
title: 'chore(release): bump package versions' | |
body: | | |
- Bump package versions |