-
Notifications
You must be signed in to change notification settings - Fork 4
36 lines (29 loc) · 917 Bytes
/
update-lockfile.yml
File metadata and controls
36 lines (29 loc) · 917 Bytes
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 pixi lockfile
on:
schedule:
# Run every Monday at 9:00 AM UTC
- cron: '0 9 * * MON'
workflow_dispatch:
jobs:
update-lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Setup pixi
uses: prefix-dev/setup-pixi@v0.9.4
- name: Update lockfile
run: |
pixi update
- name: Create Pull Request
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'chore: update pixi lockfile'
title: 'chore: update pixi lockfile'
body: |
This PR updates the pixi lockfile with the latest versions of dependencies.
Please review the changes and merge if everything looks good.
Auto-generated by the update-lockfile workflow.
branch: update-pixi-lockfile
delete-branch: true