Skip to content

Commit 1eb2f8d

Browse files
committed
Merge branch 'uv-metadata' of github.com:appium/python-client into uv-metadata
2 parents 97172e5 + 0fa55a4 commit 1eb2f8d

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/lock-update.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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+
with:
31+
commit_message: "chore: Refresh uv.lock"

0 commit comments

Comments
 (0)