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 5ce5f9a commit 9bb1863Copy full SHA for 9bb1863
tools/azure-sdk-tools/packaging_tools/sdk_generator.py
@@ -368,7 +368,10 @@ def main(generate_input, generate_output):
368
369
changelog_generation_start_time = time.time()
370
try:
371
- md_output = execute_func_with_timeout(change_log_func)
+ if data.get("enableChangelog", True):
372
+ md_output = execute_func_with_timeout(change_log_func)
373
+ else:
374
+ md_output = "skip changelog generation"
375
except multiprocessing.TimeoutError:
376
md_output = "change log generation was timeout!!! You need to write it manually!!!"
377
except:
0 commit comments