We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84dd3b7 commit d12b23dCopy full SHA for d12b23d
.github/workflows/update-claude-code.yml
@@ -28,7 +28,14 @@ jobs:
28
extra_nix_config: |
29
experimental-features = nix-command flakes
30
31
- - name: Update claude-code package
+ - name: Update claude-code package (test)
32
+ if: github.event_name == 'pull_request'
33
+ run: |
34
+ # On PRs, run the update script to test it works
35
+ # but don't commit or create PRs with the changes
36
+ ./nix/claude-code/update.sh || echo "::warning::Update script execution test failed"
37
+
38
+ - name: Update claude-code package (production)
39
if: github.event_name != 'pull_request'
40
id: update
41
run: |
0 commit comments