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 b3fc9b9 commit 46a882aCopy full SHA for 46a882a
scripts/update_changelog.py
@@ -199,9 +199,9 @@ def main():
199
# Push changes and tags.
200
server = 'https://{}@github.com/{}.git'.format(
201
GITHUB_TOKEN, GITHUB_REPOSITORY)
202
- print('would be pushing changes to branch {} of repository {}'.format(
+ print('would be pushing changes to branch "{}" of repository "{}"'.format(
203
GITHUB_REF_NAME, GITHUB_REPOSITORY))
204
- # repo.git.push(server, GITHUB_REF_NAME, dry_run=True)
+ print(local_repo.git.push(server, GITHUB_REF_NAME, dry_run=True))
205
206
207
if __name__ == '__main__':
0 commit comments