mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
ci: only run generate for dev
This commit is contained in:
parent
382905602c
commit
3274a5813e
1 changed files with 15 additions and 17 deletions
32
.github/workflows/generate.yml
vendored
32
.github/workflows/generate.yml
vendored
|
|
@ -2,11 +2,8 @@ name: generate
|
|||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- production
|
||||
pull_request:
|
||||
branches-ignore:
|
||||
- production
|
||||
branches:
|
||||
- dev
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
|
@ -39,15 +36,16 @@ jobs:
|
|||
git config --local user.name "GitHub Action"
|
||||
git add -A
|
||||
git commit -m "chore: generate"
|
||||
if ! git push origin HEAD:${{ github.event.pull_request.head.ref || github.ref_name }} --no-verify; then
|
||||
echo ""
|
||||
echo "============================================"
|
||||
echo "Failed to push generated code."
|
||||
echo "Please run locally and push:"
|
||||
echo ""
|
||||
echo " ./script/generate.ts"
|
||||
echo " git add -A && git commit -m \"chore: generate\" && git push"
|
||||
echo ""
|
||||
echo "============================================"
|
||||
exit 1
|
||||
fi
|
||||
git push origin HEAD:${{ github.ref_name }} --no-verify
|
||||
# if ! git push origin HEAD:${{ github.event.pull_request.head.ref || github.ref_name }} --no-verify; then
|
||||
# echo ""
|
||||
# echo "============================================"
|
||||
# echo "Failed to push generated code."
|
||||
# echo "Please run locally and push:"
|
||||
# echo ""
|
||||
# echo " ./script/generate.ts"
|
||||
# echo " git add -A && git commit -m \"chore: generate\" && git push"
|
||||
# echo ""
|
||||
# echo "============================================"
|
||||
# exit 1
|
||||
# fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue