Skip to content

Commit

Permalink
release script now opens a pr
Browse files Browse the repository at this point in the history
  • Loading branch information
illBeRoy committed Nov 23, 2023
1 parent 923fb72 commit 237e304
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .hooks/make_release_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import tomli
import secrets
import subprocess
import webbrowser
from pathlib import Path


Expand Down Expand Up @@ -29,6 +30,10 @@ def create_release_commit():

p.wait()

webbrowser.open(
f"https://github.com/taskipy/taskipy/compare/{branch}?quick_pull=1&title=Release%20Version%20{version}&body=%3E%20Please%20describe%20your%20release%20here"
)


if __name__ == "__main__":
create_release_commit()

0 comments on commit 237e304

Please sign in to comment.