Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/bump-pixi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Bump Pixi

on:
schedule:
- cron: "0 8 * * *" # Daily at 8 AM UTC
workflow_dispatch: {}

permissions:
contents: write
pull-requests: write

jobs:
bump-pixi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: prefix-dev/setup-pixi@v0.9.4
- run: pixi run create-pixi-update-pr
env:
GH_TOKEN: ${{ github.token }}
Loading