Skip to content

Commit

Permalink
Fix issue_number not int
Browse files Browse the repository at this point in the history
  • Loading branch information
hvidy committed Feb 14, 2024
1 parent 62ee087 commit ce31d0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/approval_authorization.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

org_name = os.environ.get("OWNER")
repo_name = os.environ.get("REPO")
issue_number = os.environ.get("ISSUE_NUMBER")
issue_number = int(os.environ.get("ISSUE_NUMBER"))

user_login = os.environ.get("USER")

Expand Down

0 comments on commit ce31d0e

Please sign in to comment.