Skip to content

Commit 547f93f

Browse files
committed
data-plan skip changelog generation
1 parent 8f33748 commit 547f93f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/azure-sdk-tools/packaging_tools/auto_package.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@ def main(generate_input, generate_output):
6767
package_name = package["packageName"]
6868
# Changelog
6969
last_version = ["first release"]
70-
md_output = change_log_generate(package_name, last_version)
70+
if 'azure-mgmt-' in package_name:
71+
md_output = change_log_generate(package_name, last_version)
72+
else:
73+
md_output = "data-plan skip changelog generation temporarily"
7174
package["changelog"] = {
7275
"content": md_output,
7376
"hasBreakingChange": "Breaking changes" in md_output,

0 commit comments

Comments
 (0)