We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e1eae0 commit cc301adCopy full SHA for cc301ad
mcp_server/jira_tools.py
@@ -161,6 +161,9 @@ async def add_jira_comment(
161
"""
162
Adds a comment to the specified Jira issue.
163
164
+ if os.getenv("DRY_RUN", "False").lower() == "true":
165
+ return f"Dry run, not adding comment to {issue_key} (this is expected, not an error)"
166
+
167
async with aiohttpClientSession() as session:
168
try:
169
async with session.post(
0 commit comments