chore: Document limitation of image_url
content type in Orchestration
#2065
Workflow file for this run
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: auto fix lint | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
checks: write | |
contents: write | |
jobs: | |
fix-lint: | |
if: github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork | |
runs-on: ubuntu-latest | |
steps: | |
- uses: sap/ai-sdk-js/.github/actions/setup@main | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.GH_CLOUD_SDK_JS_ADMIN_WRITE_TOKEN }} | |
- run: pnpm lint:fix | |
- name: Commit Changes if needed | |
run: | | |
diff=`git diff` | |
if [ ! -z "$diff" ]; then | |
git config --global user.email "cloud-sdk-js@github.com" | |
git config --global user.name "cloud-sdk-js" | |
git commit -m "fix: Changes from lint" -a | |
git push | |
fi |