mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-02 07:08:38 +00:00
Skills/nano-banana-pro: support hosted input images (#37247)
* skills(nano-banana-pro): support remote edit image URLs * test(nano-banana-pro): cover remote input image validation * docs(nano-banana-pro): document remote input images * docs(changelog): note nano-banana remote image inputs * chore(nano-banana-pro): normalize script imports * test(nano-banana-pro): normalize test imports * ci: use published bun release tag * ci: skip prod audit on PRs without dependency changes * test(nano-banana-pro): remove pillow dependency from skill tests * docs(changelog): credit nano-banana input image follow-up
This commit is contained in:
21
.github/workflows/ci.yml
vendored
21
.github/workflows/ci.yml
vendored
@@ -327,7 +327,26 @@ jobs:
|
||||
pre-commit run zizmor --files "${workflow_files[@]}"
|
||||
|
||||
- name: Audit production dependencies
|
||||
run: pre-commit run --all-files pnpm-audit-prod
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
if [ "${{ github.event_name }}" = "push" ]; then
|
||||
pre-commit run --all-files pnpm-audit-prod
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "${{ github.event_name }}" != "pull_request" ]; then
|
||||
pre-commit run --all-files pnpm-audit-prod
|
||||
exit 0
|
||||
fi
|
||||
|
||||
BASE="${{ github.event.pull_request.base.sha }}"
|
||||
if ! git diff --name-only "$BASE" HEAD | grep -Eq '(^|/)package\.json$|^pnpm-lock\.yaml$|^pnpm-workspace\.yaml$'; then
|
||||
echo "No dependency manifest changes detected; skipping pnpm audit on this PR."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
pre-commit run --all-files pnpm-audit-prod
|
||||
|
||||
checks-windows:
|
||||
needs: [docs-scope, changed-scope]
|
||||
|
||||
Reference in New Issue
Block a user