We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f52f4fe commit 16212bbCopy full SHA for 16212bb
1 file changed
.github/workflows/pixi.yml
@@ -41,6 +41,20 @@ jobs:
41
cache: true
42
auth-host: prefix.dev
43
auth-token: ${{ secrets.PIXI_TOKEN }}
44
+ frozen: false # lock dosyası yoksa veya eskiyse yeniden çöz
45
+ locked: false # lock dosyasını zorunlu tutma
46
+
47
+ - name: Update lock file (değişmişse commit'le)
48
+ run: |
49
+ git config user.name "github-actions[bot]"
50
+ git config user.email "github-actions[bot]@users.noreply.github.com"
51
+ if ! git diff --quiet pixi.lock; then
52
+ git add pixi.lock
53
+ git commit -m "chore: update pixi.lock [skip ci]"
54
+ git push
55
+ else
56
+ echo "pixi.lock değişmedi."
57
+ fi
58
59
- name: Format & lint (auto-fix)
60
run: |
0 commit comments