-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Micate ci.yml to pixi and add pixi-auto-update-ci job (#266)
- Loading branch information
1 parent
0335f1a
commit 2d36d63
Showing
2 changed files
with
37 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Pixi auto update | ||
|
||
on: | ||
# At 00:00 of every first day of the month | ||
schedule: | ||
- cron: "0 0 1 * *" | ||
# on demand | ||
workflow_dispatch: | ||
|
||
jobs: | ||
auto-update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: prefix-dev/setup-pixi@v0.5.1 | ||
with: | ||
pixi-version: "latest" | ||
cache: false | ||
- name: Update pixi lock file | ||
run: | | ||
rm pixi.lock | ||
pixi install | ||
- uses: peter-evans/create-pull-request@v5 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: update/pixi-lock | ||
title: Update pixi lock file | ||
commit-message: "Update `pixi.lock`" | ||
body: Update pixi dependencies to the latest version. | ||
author: "GitHub <noreply@github.com>" |