Update Atlas Go SDK #2
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: Update SDK | |
on: | |
schedule: | |
- cron: 30 8 * * TUE | |
workflow_dispatch: | |
jobs: | |
update-sdk: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
- name: update | |
run: | | |
go install github.com/icholy/gomajor@latest | |
make update-atlas-sdk | |
- name: Verify Changed files | |
uses: tj-actions/verify-changed-files@6d688963a73d28584e163b6f62cf927a282c4d11 | |
id: verify-changed-files | |
with: | |
files: | | |
./internal/**/* | |
- uses: peter-evans/create-pull-request@v5 | |
if: steps.verify-changed-files.outputs.files_changed == 'true' | |
with: | |
title: "chore: atlas GO sdk update" | |
commit-message: "build(deps): bump go.mongodb.org/atlas-sdk" | |
delete-branch: true | |
branch: atlas-sdk-update | |
body: | | |
Automatic update for MongoDB Atlas Go Client SDK |