You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// CommitsMadeDirectlyToBranch denotes a repo whose local worktree changes were committed directly to the specified branch because the --skip-pull-requests flag was passed
//DirectCommitsPushedToRemoteBranch denotes a repo whose changes were pushed to the remote specified branch because the --skip-pull-requests flag was passed
@@ -84,6 +86,7 @@ var allEvents = []types.AnnotatedEvent{
84
86
{Event: PushBranchSkipped, Description: "Repos whose local branch was not pushed because the --dry-run flag was set"},
85
87
{Event: RepoNotExists, Description: "Repos that were supplied by user but don't exist (404'd) via Github API"},
86
88
{Event: PullRequestOpenErr, Description: "Repos against which pull requests failed to be opened"},
89
+
{Event: PullRequestAlreadyExists, Description: "Repos where opening a pull request was skipped because a pull request was already open"},
87
90
{Event: CommitsMadeDirectlyToBranch, Description: "Repos whose local changes were committed directly to the specified branch because --skip-pull-requests was passed"},
88
91
{Event: DirectCommitsPushedToRemoteBranch, Description: "Repos whose changes were pushed directly to the remote branch because --skip-pull-requests was passed"},
89
92
{Event: BranchRemotePullFailed, Description: "Repos whose remote branches could not be successfully pulled"},
0 commit comments