Skip to content

Commit b7abf1a

Browse files
committed
merge: sync with origin/integration
2 parents 0988bcd + 5e6d1ee commit b7abf1a

26 files changed

Lines changed: 221 additions & 155 deletions

File tree

.github/last-synced-tag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.0.168
1+
v1.0.169

.github/workflows/generate.yml

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
run: ./script/generate.ts
3131

3232
- name: Commit and push
33-
id: push
3433
run: |
3534
if [ -z "$(git status --porcelain)" ]; then
3635
echo "No changes to commit"
@@ -40,16 +39,15 @@ jobs:
4039
git config --local user.name "GitHub Action"
4140
git add -A
4241
git commit -m "chore: generate"
43-
git push origin HEAD:${{ github.event.pull_request.head.ref || github.ref_name }} --no-verify
44-
45-
- name: Comment on failure
46-
if: failure()
47-
run: |
48-
MESSAGE=$'Failed to push generated code. Please run locally and push:\n```\n./script/generate.ts\ngit add -A && git commit -m "chore: generate" && git push\n```'
49-
if [ -n "${{ github.event.pull_request.number }}" ]; then
50-
gh pr comment ${{ github.event.pull_request.number }} --repo ${{ github.repository }} --body "$MESSAGE"
51-
else
52-
gh api repos/${{ github.repository }}/commits/${{ github.sha }}/comments -f body="$MESSAGE"
42+
if ! git push origin HEAD:${{ github.event.pull_request.head.ref || github.ref_name }} --no-verify; then
43+
echo ""
44+
echo "============================================"
45+
echo "Failed to push generated code."
46+
echo "Please run locally and push:"
47+
echo ""
48+
echo " ./script/generate.ts"
49+
echo " git add -A && git commit -m \"chore: generate\" && git push"
50+
echo ""
51+
echo "============================================"
52+
exit 1
5353
fi
54-
env:
55-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

bun.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/console/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/console-app",
3-
"version": "1.0.168",
3+
"version": "1.0.169",
44
"type": "module",
55
"scripts": {
66
"typecheck": "tsgo --noEmit",

packages/console/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@opencode-ai/console-core",
4-
"version": "1.0.168",
4+
"version": "1.0.169",
55
"private": true,
66
"type": "module",
77
"dependencies": {

packages/console/function/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/console-function",
3-
"version": "1.0.168",
3+
"version": "1.0.169",
44
"$schema": "https://json.schemastore.org/package.json",
55
"private": true,
66
"type": "module",

packages/console/mail/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/console-mail",
3-
"version": "1.0.168",
3+
"version": "1.0.169",
44
"dependencies": {
55
"@jsx-email/all": "2.2.3",
66
"@jsx-email/cli": "1.4.3",

packages/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/desktop",
3-
"version": "1.0.168",
3+
"version": "1.0.169",
44
"description": "",
55
"type": "module",
66
"exports": {

0 commit comments

Comments
 (0)