Skip to content

docs: spec system overhaul — frontmatter + lint + AGENTS.md + EARS infra #15

docs: spec system overhaul — frontmatter + lint + AGENTS.md + EARS infra

docs: spec system overhaul — frontmatter + lint + AGENTS.md + EARS infra #15

name: Dependabot uv sync
on: pull_request
permissions:
contents: write
jobs:
uv-sync:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GITHUB_TOKEN }}
- uses: astral-sh/setup-uv@v8.1.0
- run: uv sync --no-install-project
- name: Commit updated uv.lock
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add uv.lock
git diff --cached --quiet || git commit -m "chore: update uv.lock"
git push