Skip to content

Commit

Permalink
Merge pull request #3 from Caesarovich/pr-fix
Browse files Browse the repository at this point in the history
Fix wrong property names
  • Loading branch information
willforde committed Nov 4, 2023
2 parents 7ad7ea6 + 3ab342d commit 2a9910a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ def get_args():
# So we need to handle that case
if "/" in args.repo_name:
owner, repo_name = args.repo_name.lower().split("/")
if owner != args.owner:
msg = f"Mismatch in repository: {args.repo_name} and owner:{args.repository_owner}"
if owner != args.repo_owner:
msg = f"Mismatch in repository: {args.repo_name} and owner:{args.repo_owner}"
raise ValueError(msg)
args.repo_name = repo_name

Expand Down

0 comments on commit 2a9910a

Please sign in to comment.