You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pnpm exec claude --print --dangerously-skip-permissions \
81
83
--model sonnet \
82
-
"/updating - Run the updating skill to update all dependencies. Create atomic commits for each update. You are running in CI mode - skip builds and tests. Do not push or create a PR." \
84
+
"$(cat <<'PROMPT'
85
+
/updating
86
+
87
+
<context>
88
+
You are an automated CI agent in a weekly dependency update workflow.
89
+
Git is configured with GPG signing. A branch has been created for you.
90
+
</context>
91
+
92
+
<instructions>
93
+
Update all dependencies to their latest versions.
94
+
Create one atomic commit per dependency update with a conventional commit message.
95
+
Leave all changes local — the workflow handles pushing and PR creation.
96
+
Skip running builds, tests, and type checks — CI runs those separately.
97
+
</instructions>
98
+
99
+
<success_criteria>
100
+
Each updated dependency has its own commit.
101
+
The lockfile is consistent with package.json changes.
102
+
No uncommitted changes remain in the working tree.
103
+
</success_criteria>
104
+
PROMPT
105
+
)" \
83
106
2>&1 | tee claude-output.log
84
107
CLAUDE_EXIT=${PIPESTATUS[0]}
85
108
set -e
@@ -153,6 +176,9 @@ jobs:
153
176
path: claude-output.log
154
177
retention-days: 7
155
178
179
+
- uses: SocketDev/socket-registry/.github/actions/cleanup-git-signing@6096b06b1790f411714c89c40f72aade2eeaab7c # main
0 commit comments