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