mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-19 01:51:21 +08:00
- Update AGENTS.md to reflect main as default branch - Update GitHub Actions workflows to trigger on main branch - Update publish scripts to cherry-pick from origin/main - Update upstream merge scripts and documentation - Update CONTRIBUTING.md links in PR standards workflow - Fix disabled workflow and documentation links All development commands (bun dev, npm run dev) and external services (models.dev, ai-sdk.dev) remain unchanged as they are unrelated to branch names.
26 lines
514 B
YAML
26 lines
514 B
YAML
name: Check Links
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
schedule:
|
|
# Run daily at 9am UTC
|
|
- cron: "0 9 * * *"
|
|
workflow_dispatch: # Allow manual trigger
|
|
|
|
jobs:
|
|
link-checker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Link Checker
|
|
uses: lycheeverse/lychee-action@v2
|
|
with:
|
|
args: "**/*.md"
|
|
workingDirectory: packages/kilo-docs
|
|
fail: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|