Skip to content

Commit a9da529

Browse files
Update main.yml
1 parent 06f0fd8 commit a9da529

1 file changed

Lines changed: 52 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,55 @@ jobs:
4545
VCS__PIPELINE__PULL_NUMBER: ${{ inputs.pull-request-number }}
4646
VCS__HTTP_CLIENT__API_URL: "https://api.github.com"
4747
VCS__HTTP_CLIENT__API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48+
49+
# ===============================
50+
# Prompts (optional overrides)
51+
# ===============================
52+
# Whether to normalize prompts before sending to the LLM.
53+
# Controls stripping trailing spaces, collapsing multiple blank lines,
54+
# and trimming leading/trailing whitespace.
55+
#
56+
# Default: "true"
57+
#
58+
# Example:
59+
# PROMPT__NORMALIZE_PROMPTS: "false"
60+
#
61+
# Set to "false" if you want prompts to be passed to the model "as is",
62+
# without any cleanup or formatting changes.
63+
#
64+
# PROMPT__NORMALIZE_PROMPTS: "true"
65+
66+
# Inline prompts (joined in order, local review instructions).
67+
PROMPT__INLINE_PROMPT_FILES: '["./prompts/inline.md"]'
68+
69+
# Inline system prompts (format/contract rules).
70+
# PROMPT__SYSTEM_INLINE_PROMPT_FILES: '["./prompts/system_inline.md"]'
71+
# PROMPT__INCLUDE_INLINE_SYSTEM_PROMPTS: "true"
72+
73+
# Context prompts (joined in order, broader analysis instructions).
74+
# PROMPT__CONTEXT_PROMPT_FILES: '["./prompts/context.md"]'
75+
76+
# Context system prompts (format/contract rules).
77+
# PROMPT__SYSTEM_CONTEXT_PROMPT_FILES: '["./prompts/system_context.md"]'
78+
# PROMPT__INCLUDE_CONTEXT_SYSTEM_PROMPTS: "true"
79+
80+
# Summary prompts (joined in order, local review instructions).
81+
# PROMPT__SUMMARY_PROMPT_FILES: '["./prompts/summary.md"]'
82+
83+
# Summary system prompts (format/contract rules).
84+
# PROMPT__SYSTEM_SUMMARY_PROMPT_FILES: '["./prompts/system_summary.md"]'
85+
# PROMPT__INCLUDE_SUMMARY_SYSTEM_PROMPTS: "true"
86+
87+
# Inline reply prompts (used when replying to inline code review comments).
88+
# PROMPT__INLINE_REPLY_PROMPT_FILES: '["./prompts/inline_reply.md"]'
89+
90+
# Inline reply system prompts (format/contract rules).
91+
# PROMPT__SYSTEM_INLINE_REPLY_PROMPT_FILES: '["./prompts/system_inline_reply.md"]'
92+
# PROMPT__INCLUDE_INLINE_REPLY_SYSTEM_PROMPTS: "true"
93+
94+
# Summary reply prompts (used when replying in summary review threads).
95+
# PROMPT__SUMMARY_REPLY_PROMPT_FILES: '["./prompts/summary_reply.md"]'
96+
97+
# Summary reply system prompts (format/contract rules).
98+
# PROMPT__SYSTEM_SUMMARY_REPLY_PROMPT_FILES: '["./prompts/system_summary_reply.md"]'
99+
# PROMPT__INCLUDE_SUMMARY_REPLY_SYSTEM_PROMPTS: "true"

0 commit comments

Comments
 (0)