Update AWS service files #218
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 AWS service files | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 2 * * 1' | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- name: App Token | |
uses: tibdex/github-app-token@v1 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
fetch-depth: 1 | |
- name: Install Dependencies | |
run: | | |
brew install swift-sh | |
brew install mint | |
echo "$HOME/.mint/bin" >> $GITHUB_PATH | |
- name: Update Models | |
id: update-models | |
run: | | |
./scripts/update_models.sh | grep AWS_MODELS_VERSION >> $GITHUB_ENV | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ steps.generate-token.outputs.token }} | |
commit-message: 'Update models from aws-sdk-go-v2 ${{ env.AWS_MODELS_VERSION }}' | |
committer: GitHub <[email protected]> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
branch: aws-update-models | |
title: 'Update models from aws-sdk-go-v2 ${{ env.AWS_MODELS_VERSION }}' | |
body: 'Automated update of AWS service files from Smithy model files in aws-sdk-go-v2 repository' | |
base: main |