Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/update-quickstart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
run: python -m scripts.update_quickstart

- name: Open PR if files changed
id: create-pr
uses: peter-evans/create-pull-request@v6
with:
commit-message: "chore: refresh quickstart JSON files"
Expand All @@ -46,9 +47,18 @@ jobs:
`quickstart-alibaba.json`.

Triggered by `.github/workflows/update-quickstart.yml`.
Review the model diff before merging.
This PR is merged automatically by the workflow once the
in-run pytest + v2 schema gate pass. If the model diff looks
wrong, audit the commit history on `main`.
branch: automated/quickstart-refresh
delete-branch: true
add-paths: |
quickstart-synthetic.json
quickstart-alibaba.json

- name: Auto-merge the refresh PR
if: steps.create-pr.outputs.pull-request-number != ''
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ steps.create-pr.outputs.pull-request-number }}
run: gh pr merge "$PR_NUMBER" --squash --delete-branch
Loading