Skip to content

Commit

Permalink
fixing changelog by actually running function
Browse files Browse the repository at this point in the history
  • Loading branch information
BitlyTwiser committed Sep 16, 2024
1 parent d5220e0 commit bdb81ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
repo_name = "apprunner"

def print_stable_changelog():
print("Here")
url = f"compare/{changelog_from_last_commit}...next"
commits = handle_get_request(url)
for commit in commits["commits"]:
Expand Down Expand Up @@ -56,4 +57,4 @@ def format_output(commit):
author = commit["author"]["login"] if commit["author"] and "login" in commit["author"] else commit["commit"]["author"]["name"]
return '- ' + commit["sha"][:8] + ' - @' + author + ': ' + message_lines[0]

print_stable_changelog
print_stable_changelog()

0 comments on commit bdb81ef

Please sign in to comment.