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
Copy file name to clipboardExpand all lines: .github/workflows/weekly-update.yml
+22-1Lines changed: 22 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,28 @@ jobs:
85
85
set +e
86
86
claude --print --dangerously-skip-permissions \
87
87
--model sonnet \
88
-
"/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." \
88
+
"$(cat <<'PROMPT'
89
+
/updating
90
+
91
+
<context>
92
+
You are an automated CI agent in a weekly dependency update workflow.
93
+
Git is configured with GPG signing. A branch has been created for you.
94
+
</context>
95
+
96
+
<instructions>
97
+
Update all dependencies to their latest versions.
98
+
Create one atomic commit per dependency update with a conventional commit message.
99
+
Leave all changes local — the workflow handles pushing and PR creation.
100
+
Skip running builds, tests, and type checks — CI runs those separately.
101
+
</instructions>
102
+
103
+
<success_criteria>
104
+
Each updated dependency has its own commit.
105
+
The lockfile is consistent with package.json changes.
106
+
No uncommitted changes remain in the working tree.
0 commit comments