We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3c7511 commit 1a1cf34Copy full SHA for 1a1cf34
.github/workflows/lock-update.yml
@@ -0,0 +1,31 @@
1
+name: Update uv.lock
2
+
3
+on:
4
+ pull_request:
5
+ types: [ opened, synchronize ]
6
+ paths:
7
+ - 'pyproject.toml'
8
9
+permissions:
10
+ contents: write
11
+ pull-requests: write
12
13
+jobs:
14
+ uv-lock-update:
15
+ if: github.actor == 'dependabot[bot]'
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ with:
20
+ token: ${{ secrets.GITHUB_TOKEN }}
21
+ ref: ${{ github.head_ref }}
22
+ - name: Set up Python
23
+ uses: actions/setup-python@v4
24
25
+ python-version: '3.12'
26
+ - name: Install uv
27
+ run: make install-uv
28
+ - run: uv lock
29
+ - uses: stefanzweifel/git-auto-commit-action@v5
30
31
+ commit_message: "chore: Refresh uv.lock"
0 commit comments