Skip to content

Commit

Permalink
Update PR should do nothing on nspkg
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Sep 21, 2018
1 parent 41ff15b commit e14eaf7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions azure-sdk-tools/packaging_tools/update_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ def update_pr(gh_token, repo_id, pr_number):
configure_user(gh_token, sdk_repo)

for package_name in package_names:
if package_name.endswith("nspkg"):
_LOGGER.info("Skip nspkg packages for update PR")
continue

# Rebuild packaging
build_packaging_by_package_name(package_name, sdk_folder, build_conf=True)
# Commit that
Expand Down

0 comments on commit e14eaf7

Please sign in to comment.