Skip to content

Commit dabfc43

Browse files
committed
feat: auto deps
1 parent 4c872e5 commit dabfc43

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/pip_refresh.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
# SPDX-FileCopyrightText: 2026 Joe Pitt
3+
#
4+
# SPDX-License-Identifier: GPL-3.0-only
5+
6+
name: Update PIP Dependencies
7+
permissions:
8+
contents: write
9+
on:
10+
push:
11+
branches-ignore:
12+
- main
13+
jobs:
14+
update:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout Project
18+
uses: actions/checkout@v6
19+
20+
- name: Update Dependencies
21+
run: pip install --no-cache-dir --target=./lib/ --upgrade -r requirements.txt
22+
23+
- name: Commit Updates
24+
uses: ryancyq/github-signed-commit@v1
25+
env:
26+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
with:
28+
files: |
29+
lib/**
30+
commit-message: "chore(deps): updated pip modules"

0 commit comments

Comments
 (0)