Beispiel #1
0
func isAcceptPullRequestAction(prAction string) bool {
	return sliceutil.IsStringInSlice(prAction, []string{"opened", "reopened", "synchronize", "edited"})
}
Beispiel #2
0
func isAcceptEventType(eventKey string) bool {
	return sliceutil.IsStringInSlice(eventKey, []string{tagPushEventID, codePushEventID, mergeRequestEventID})
}
Beispiel #3
0
func isAcceptMergeRequestState(prAction string) bool {
	return sliceutil.IsStringInSlice(prAction, []string{"opened", "reopened"})
}
func isAcceptEventType(eventKey string) bool {
	return sliceutil.IsStringInSlice(eventKey, []string{"repo:push", "pullrequest:created", "pullrequest:updated"})
}