Move the flake identity from nix-steipete-tools to nix-openclaw-tools, update transferred upstream repos to openclaw, and drop stale CodexBar/bird packaging. Tests: go test ./...; nix flake show --all-systems; nix build .#gogcli .#goplaces .#summarize .#camsnap .#sonoscli --no-link
34 lines
688 B
YAML
34 lines
688 B
YAML
name: sync-skills
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "*/30 * * * *"
|
|
workflow_dispatch: {}
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Sync skills from OpenClaw
|
|
run: go run ./cmd/sync-skills
|
|
|
|
- name: Commit & push if changed
|
|
run: |
|
|
if git diff --quiet; then
|
|
echo "No changes"
|
|
exit 0
|
|
fi
|
|
git config user.name "openclaw-ci"
|
|
git config user.email "ci@openclaw.local"
|
|
git add -A
|
|
git commit -m "sync skills from openclaw"
|
|
git push
|