Skip to content

Commit

Permalink
fix(events): split up github
Browse files Browse the repository at this point in the history
Signed-off-by: Matej Focko <mfocko@redhat.com>
  • Loading branch information
mfocko committed Oct 21, 2024
1 parent 89c111a commit 9a8f285
Show file tree
Hide file tree
Showing 15 changed files with 470 additions and 431 deletions.
30 changes: 18 additions & 12 deletions packit_service/worker/events/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,25 @@
Event,
AbstractForgeIndependentEvent,
)
from packit_service.worker.events.github import (
InstallationEvent,
IssueCommentEvent,
PullRequestCommentGithubEvent,
PullRequestGithubEvent,
PushGitHubEvent,
ReleaseEvent,
AbstractGithubEvent,
CheckRerunCommitEvent,
CheckRerunPullRequestEvent,
CheckRerunReleaseEvent,
CheckRerunEvent,
from packit_service.worker.events.github.abstract import (
GithubEvent as AbstractGithubEvent,
)
from packit_service.worker.events.github.check import (
Commit as CheckRerunCommitEvent,
PullRequest as CheckRerunPullRequestEvent,
Release as CheckRerunReleaseEvent,
Rerun as CheckRerunEvent,
)
from packit_service.worker.events.github.installation import (
Installation as InstallationEvent,
)
from packit_service.worker.events.github.issue import Comment as IssueCommentEvent
from packit_service.worker.events.github.pr import (
Comment as PullRequestCommentGithubEvent,
Synchronize as PullRequestGithubEvent,
)
from packit_service.worker.events.github.push import Push as PushGitHubEvent
from packit_service.worker.events.github.release import Release as ReleaseEvent
from packit_service.worker.events.gitlab import (
IssueCommentGitlabEvent,
MergeRequestCommentGitlabEvent,
Expand Down
Loading

0 comments on commit 9a8f285

Please sign in to comment.