Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ dist: xenial
python: '3.7'
stages:
- name: test
if: tag IS NOT present
- name: bump_and_tag
if: branch = master AND NOT tag IS present AND type != pull_request
- name: publish
Expand Down
2 changes: 1 addition & 1 deletion utils/common/bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def bump(labels=None):

print("Committing files changed by version bumping")
# commit files changed by version bumping
print(git("commit", "-a", "-m", COMMIT_MESSAGE.format(version) + ' [skip ci]'))
print(git("commit", "-a", "-m", COMMIT_MESSAGE.format(version)))

return version

Expand Down