Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
keplervital committed Aug 8, 2023
1 parent 25be57a commit de5be35
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/actions/pullrequest/create/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import string
from github import Github
from git import Repo
from git import Actor


class ActionInputs:
Expand Down Expand Up @@ -73,8 +74,8 @@ def create_pull_request(inputs: ActionInputs):
inputs.commit_message,
parent_commits=None,
head=True,
author=inputs.author,
committer=inputs.committer,
author=Actor(inputs.author),
committer=Actor(inputs.committer),
)

# Push the changes to the remote repository
Expand Down

0 comments on commit de5be35

Please sign in to comment.