Skip to content

Commit 14a4fe5

Browse files
committed
ci: Fix branch
1 parent d07426e commit 14a4fe5

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/update_pixi_lockfiles.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI - Update Pixi lockfiles
1+
name: CI - Update Pixi lockfile
22
permissions:
33
contents: write
44
pull-requests: write
@@ -20,13 +20,18 @@ jobs:
2020
private-key: ${{ secrets.APP_PRIVATE_KEY }}
2121

2222
- uses: actions/checkout@v4
23+
with:
24+
token: ${{ steps.generate-token.outputs.token }}
25+
ref: topic/pixi
26+
# Make sure the value of GITHUB_TOKEN will not be persisted in repo's config
27+
persist-credentials: false
2328

2429
- name: Set up pixi
2530
uses: prefix-dev/[email protected]
2631
with:
2732
run-install: false
2833

29-
- name: Update lockfiles
34+
- name: Update lockfile
3035
run: |
3136
set -o pipefail
3237
pixi update --json | pixi exec pixi-diff-to-markdown >> diff.md
@@ -35,11 +40,11 @@ jobs:
3540
uses: peter-evans/create-pull-request@v7
3641
with:
3742
token: ${{ steps.generate-token.outputs.token }}
38-
commit-message: Update pixi lockfile
43+
commit-message: 'pixi: Update pixi lockfile'
3944
title: Update pixi lockfile
4045
body-path: diff.md
41-
branch: update-pixi
42-
base: main
46+
branch: topic/update-pixi
47+
base: topic/pixi
4348
labels: pixi
4449
delete-branch: true
4550
add-paths: pixi.lock

0 commit comments

Comments
 (0)