Revert "[ACTIONS] on.schedule: the event is always "schedule""

This reverts commit 403bb4bf48.
This commit is contained in:
Earl Warren 2024-03-25 16:07:17 +01:00
parent 23f68cad7e
commit 623c79dfd2
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
6 changed files with 1 additions and 15 deletions

View file

@ -22,7 +22,6 @@ const (
GithubEventRelease = "release"
GithubEventPullRequestComment = "pull_request_comment"
GithubEventGollum = "gollum"
GithubEventSchedule = "schedule"
)
// IsDefaultBranchWorkflow returns true if the event only triggers workflows on the default branch
@ -74,9 +73,6 @@ func canGithubEventMatch(eventName string, triggedEvent webhook_module.HookEvent
case GithubEventGollum:
return triggedEvent == webhook_module.HookEventWiki
case GithubEventSchedule:
return triggedEvent == webhook_module.HookEventSchedule
case GithubEventIssues:
switch triggedEvent {
case webhook_module.HookEventIssues,