Update Atlas Go SDK #59
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 Atlas Go SDK | |
# Checks if a new Atlas Go SDK version is available and creates a pull request adjusting version in codebase. Runs once per week and can be triggered manually. | |
on: | |
schedule: | |
- cron: "30 8 * * TUE" # Every Tuesday at 8:30 AM | |
workflow_dispatch: | |
jobs: | |
update-sdk: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 | |
with: | |
go-version-file: 'go.mod' | |
- name: Update files | |
run: make tools update-atlas-sdk | |
- name: Verify Changed files | |
uses: tj-actions/verify-changed-files@5c70053821ef986fa44bfb3e3efd1b8c040046f0 | |
id: verify-changed-files | |
- name: Create PR | |
uses: peter-evans/create-pull-request@c55203cfde3e5c11a452d352b4393e68b85b4533 | |
if: steps.verify-changed-files.outputs.files_changed == 'true' | |
with: | |
title: "chore: Updates Atlas Go SDK" | |
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 |