Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/lock-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Update uv.lock

on:
pull_request:
types: [ opened, synchronize ]
paths:
- 'pyproject.toml'

permissions:
contents: write
pull-requests: write

jobs:
uv-lock-update:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.head_ref }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install uv
run: make install-uv
- run: uv lock
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore: Refresh uv.lock"