Skip to content

Commit

Permalink
Merge pull request #178 from robotology/traversaro-patch-3
Browse files Browse the repository at this point in the history
Add periodic action to update pixi lock file
  • Loading branch information
traversaro authored Mar 4, 2024
2 parents b7dccf9 + 0887754 commit 6cd3a7a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pixi-auto-update-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Pixi auto update

on:
# At 00:00 of every monday
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>"

0 comments on commit 6cd3a7a

Please sign in to comment.