Files
skills/.github/workflows/update.yml
Kevin Veen-Birkenbach 077643098b
Some checks failed
🧪 Test / 🧪 Lock + lint (push) Has been cancelled
feat: add first-party skills, ponytail lock, and full lint suite
- add ponytail skill set to skills-lock.json (14 locked skills total)
- add first-party medusa skill under skills/, layered on install
- make test now runs ruff, shellcheck, and markdownlint-cli2
- CI installs the lint tools before make test in both workflows
- MIT license, funding buttons, thanks and donation sections in README
- .markdownlint-cli2.jsonc config; ignore lint caches in .gitignore
2026-07-10 12:54:47 +02:00

50 lines
1.2 KiB
YAML

name: 🔄 Update
on:
schedule:
- cron: "17 4 * * *"
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
update-skills:
name: 🧠 Update skills-lock.json
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v7
- name: 🐍 Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: 🔧 Set up Node.js
uses: actions/setup-node@v6
with:
node-version: lts/*
- name: 📦 Install lint tools
run: |
pip install ruff
sudo apt-get update && sudo apt-get install -y shellcheck
npm install -g markdownlint-cli2
- name: 🔄 Update skills
run: make update
- name: 🧪 Run tests
run: make test
- name: 📂 Open PR if skills-lock.json changed
uses: peter-evans/create-pull-request@v7
with:
branch: update/skills
commit-message: "update(skills): update skills-lock.json to latest versions"
title: "update(skills): update agent skills to latest versions"
body: "Automated daily update of `skills-lock.json` via `make update`."
add-paths: skills-lock.json