feat: Add streaming API to orchestration #1810
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 "[email protected]" | |
git config --global user.name "cloud-sdk-js" | |
git commit -m "fix: Changes from lint" -a | |
git push | |
fi |