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 \
110
112
--model sonnet \
111
-
"/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." \
113
+
"$(cat <<'PROMPT'
114
+
/updating
115
+
116
+
<context>
117
+
You are an automated CI agent in a weekly dependency update workflow.
118
+
Git is configured with GPG signing. A branch has been created for you.
119
+
</context>
120
+
121
+
<instructions>
122
+
Update all dependencies to their latest versions.
123
+
Create one atomic commit per dependency update with a conventional commit message.
124
+
Leave all changes local — the workflow handles pushing and PR creation.
125
+
Skip running builds, tests, and type checks — CI runs those separately.
126
+
</instructions>
127
+
128
+
<success_criteria>
129
+
Each updated dependency has its own commit.
130
+
The lockfile is consistent with package.json changes.
131
+
No uncommitted changes remain in the working tree.
132
+
</success_criteria>
133
+
PROMPT
134
+
)" \
112
135
2>&1 | tee claude-output.log
113
136
CLAUDE_EXIT=${PIPESTATUS[0]}
114
137
set -e
@@ -182,6 +205,9 @@ jobs:
182
205
path: claude-output.log
183
206
retention-days: 7
184
207
208
+
- uses: SocketDev/socket-registry/.github/actions/cleanup-git-signing@6096b06b1790f411714c89c40f72aade2eeaab7c # main
0 commit comments