15 lines
395 B
Go
15 lines
395 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"code.gitea.io/gitea/modules/structs"
|
||
|
"github.com/google/go-github/v59/github"
|
||
|
)
|
||
|
|
||
|
func convertPullRequestEvent(event *structs.PullRequestPayload) *github.PullRequestEvent {
|
||
|
return &github.PullRequestEvent{
|
||
|
Action: stringPtr(translatePrAction(event.Action)),
|
||
|
PullRequest: convertPullRequest(event.PullRequest),
|
||
|
Repo: convertRepo(event.Repository),
|
||
|
}
|
||
|
}
|