-
Notifications
You must be signed in to change notification settings - Fork 4
36 lines (32 loc) · 1.12 KB
/
Copy pathsync_python_deps.yml
File metadata and controls
36 lines (32 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
name: Update Python dependencies with PDM
# Other dependencies updates are managed by renovatebot
on:
schedule:
- cron: "0 12 * * SAT"
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
update-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- name: Update dependencies with PDM
uses: pdm-project/update-deps-action@22852fcff9a131d732730e8db92cc9502643a260 # v1.12
with:
# The personal access token, default: ${{ github.token }}
token: ${{ github.token }}
# The commit message"
commit-message: "chore(deps): Update pdm.lock"
# The PR title
pr-title: "chore(deps): Update Python dependencies with PDM"
# The update strategy, can be 'reuse', 'eager' or 'all'
update-strategy: all
# Whether to install PDM plugins before update
install-plugins: "true"
# Whether commit message contains signed-off-by
sign-off-commit: "true"