Skip to content

Commit 3866940

Browse files
chore: system prompt generation (#667)
# Motivation Update System Prompt Generation # Content <!-- Please include a summary of the change --> # Testing <!-- How was the change tested? --> # Please check the following before marking your PR as ready for review - [ ] I have added tests for my changes - [ ] I have updated the documentation or added new documentation as needed
1 parent b731313 commit 3866940

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/generate-docs.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,14 @@ jobs:
2424
- name: Generate API reference
2525
run: uv run python src/codegen/gscli/cli.py generate docs
2626

27+
- name: Generate System Prompt
28+
run: uv run python src/codegen/gscli/cli.py generate system-prompt
29+
2730
- name: Commit changes
2831
run: |
2932
git config --local user.email ${{ secrets.DOCS_USER_EMAIL }}
3033
git config --local user.name ${{ secrets.DOCS_USER_NAME }}
31-
git add docs/
34+
git add docs/ src/codegen/sdk/system-prompt.txt
3235
git diff --staged --quiet || git commit -m "docs: updated API reference"
3336
3437
- name: Push changes

0 commit comments

Comments
 (0)