File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5656 git status --porcelain providers/vercel/
5757 fi
5858
59- - name : Create branch and commit changes
60- if : steps.check-changes.outputs.has-changes == 'true'
61- id : create-branch
62- run : |
63- BRANCH_NAME="update-vercel-models-$(date +%Y%m%d-%H%M)"
64- git config --global user.name 'github-actions[bot]'
65- git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
66- git checkout -b "$BRANCH_NAME"
67- git add $(git ls-files --others --exclude-standard -- providers/vercel/) 2>/dev/null; true
68- git add $(git ls-files --deleted -- providers/vercel/) 2>/dev/null; true
69- git commit -m "chore(vercel): update Vercel model definitions
70-
71- Auto-generated by weekly workflow from Vercel AI Gateway API.
72-
73- Co-Authored-By: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"
74- git push origin "$BRANCH_NAME"
75- echo "branch-name=$BRANCH_NAME" >> "$GITHUB_OUTPUT"
76-
77- - name : No changes
78- if : steps.check-changes.outputs.has-changes == 'false'
79- run : |
80- echo "No changes detected. Vercel models are already up to date."
81-
8259 - name : Send Slack notification
8360 if : always()
8461 run : |
You can’t perform that action at this time.
0 commit comments