20428f2630
Keeps the 4vcpu host change in test.yml (already annotated with # kilocode_change). The Node 20 deprecation warning stays for now; `FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true` already forces the v4 actions to Node 24 at runtime, so the warning is informational and CI still works. Bumping all actions would require 40+ kilocode_change markers across shared upstream workflows and invite conflicts on every upstream merge — we'll pick up the version bumps when upstream does.
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: Check shared upstream annotations
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- ".github/**"
|
|
- "github/**"
|
|
- "sdks/vscode/**"
|
|
- "packages/extensions/**"
|
|
- "packages/opencode/**"
|
|
- "packages/script/**"
|
|
- "packages/shared/**"
|
|
- "packages/storybook/**"
|
|
- "packages/ui/**"
|
|
- "script/**"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check-annotations:
|
|
name: Check kilocode_change annotations
|
|
if: github.repository == 'Kilo-Org/kilocode'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
fetch-depth: 0
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- name: Check kilocode_change annotations in shared upstream files
|
|
env:
|
|
BASE_SHA: ${{ github.event.pull_request.base.sha }}
|
|
run: |
|
|
if [ -n "$BASE_SHA" ]; then
|
|
bun run script/check-opencode-annotations.ts --base "$BASE_SHA"
|
|
else
|
|
echo "No PR base SHA available (workflow_dispatch without PR context) — skipping."
|
|
fi
|