mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-08-29 03:44:06 +08:00
eaabc99625
- Adds 'new file' marker to check-forbidden-strings workflow - Marks the SKIP_FILES addition in extract-source-links.ts - Updates nvidia-headers test to assert the new kilo.ai/Kilo Code values
22 lines
491 B
YAML
22 lines
491 B
YAML
# kilocode_change - new file
|
|
name: Check forbidden strings
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check:
|
|
name: Check forbidden strings
|
|
if: github.repository == 'Kilo-Org/kilocode'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6 # kilocode_change
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- name: Run check
|
|
run: bun run script/check-forbidden-strings.ts
|