Skip to content

Commit

Permalink
Merge branch 'release/v1.6.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Limych committed Sep 22, 2020
2 parents 3db3a22 + e1515e9 commit 209d643
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ jobs:
- name: "Install requirements"
run: |
python3 -m pip install setuptools wheel
python3 -m pip install -r ./requirements.txt
python3 -m pip install -r ./requirements-dev.txt
- name: "Update release notes"
run: python3 ./script/generate_releasenotes.py --token ${{ secrets.GITHUB_TOKEN }} --repo ${{ github.repository }} --update-release ${{ github.ref }}
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ black
flake8
mypy
pre-commit
PyGithub==1.53
pylint
pylint-strict-informational
pyupgrade
Expand Down
2 changes: 1 addition & 1 deletion script/generate_releasenotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def main():
_LOGGER.debug("Tag: %s", version)
release = repo.get_release(version)
release.update_release(
name=VERSION,
name=version,
prerelease=release.prerelease,
draft=release.draft,
message=BODY.format(
Expand Down

0 comments on commit 209d643

Please sign in to comment.