Skip to content

Commit dd0b6bd

Browse files
committed
Merge branch 'main' into lifei/upgrade-ui-sdk
* main: feat(hooks): add Husky git hooks for ui/goose2 (#8577) fix: links in chat could not be opened (#8544) fix: run setup before dev and dev-debug in goose2 justfile (#8718) Manage skills as sources over ACP (#8675) handle full node paths in goose2 kill recipe (#8709) overhaul provider inventory and agent/model selection (#8652) Remove unused import (#8676) delete the goose2 migration plan prompt (#8678) Add health score badge to README (#8677) feat(goose2): voice dictation via direct-ACP pattern (#8609) consistently use actions-rust-lang/setup-rust-toolchain (#8671) fix(developer): run shell tool under bash/sh regardless of login shell (#8659) refactor(providers): extract shared OAuth device-flow helper (#8619) Add a goose2 release workflow (#8629) chore(deps): bump ncipollo/release-action from 1.20.0 to 1.21.0 (#8664) docs: add blog post about Mesh LLM provider option (#8655) fix: append /chat/completions for prefixed v1 base URLs (#8521) Reset ChatGPT Codex auth during OAuth setup (#8569) chore(deps): bump EmbarkStudios/cargo-deny-action from 2.0.15 to 2.0.17 (#8665) Add dependabot config for pnpm workspace, cargo, and actions (#8660)
2 parents 21da10e + cbf893c commit dd0b6bd

150 files changed

Lines changed: 13527 additions & 6050 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
version: 2
2+
updates:
3+
# pnpm workspace for the UI (desktop, acp, text, sdk, goose-binary/*, goose2).
4+
# Point at the workspace ROOT where pnpm-lock.yaml lives so Dependabot updates
5+
# both the child package.json AND ui/pnpm-lock.yaml in one PR.
6+
- package-ecosystem: "npm"
7+
directory: "/ui"
8+
schedule:
9+
interval: "weekly"
10+
open-pull-requests-limit: 10
11+
groups:
12+
ui-minor-and-patch:
13+
update-types:
14+
- "minor"
15+
- "patch"
16+
17+
# Cargo workspace at the repo root.
18+
- package-ecosystem: "cargo"
19+
directory: "/"
20+
schedule:
21+
interval: "weekly"
22+
open-pull-requests-limit: 10
23+
groups:
24+
cargo-minor-and-patch:
25+
update-types:
26+
- "minor"
27+
- "patch"
28+
29+
# GitHub Actions used by workflows in .github/workflows.
30+
- package-ecosystem: "github-actions"
31+
directory: "/"
32+
schedule:
33+
interval: "weekly"
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Manual Goose 2 Bundle (Unsigned)"
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
branch:
7+
description: "Branch name to bundle app from"
8+
required: true
9+
type: string
10+
cli-run-id:
11+
description: "Run ID of a build-cli workflow to pull the goose binary from (optional, builds from source if empty)"
12+
required: false
13+
type: string
14+
default: ""
15+
16+
jobs:
17+
bundle-goose2:
18+
uses: ./.github/workflows/bundle-goose2.yml
19+
permissions:
20+
id-token: write
21+
contents: read
22+
actions: read
23+
with:
24+
signing: false
25+
ref: ${{ inputs.branch }}
26+
cli-run-id: ${{ inputs.cli-run-id }}

0 commit comments

Comments
 (0)