We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c65f1 commit 58866e7Copy full SHA for 58866e7
1 file changed
src/ghdcbot/engine/orchestrator.py
@@ -269,7 +269,16 @@ def _send_notifications_for_new_events(
269
github_org: str,
270
) -> None:
271
"""Send Discord notifications for notification-worthy events (verified users only)."""
272
- from ghdcbot.engine.notifications import send_notification_for_event
+def _send_notifications_for_new_events(
273
+ contributions: list[ContributionEvent],
274
+ storage: Storage,
275
+ discord_writer: DiscordWriter,
276
+ policy: MutationPolicy,
277
+ config: Any,
278
+ github_org: str,
279
+) -> None:
280
+ """Send Discord notifications for notification-worthy events (verified users only)."""
281
+ logger = logging.getLogger("Notifications")
282
283
logger = logging.getLogger("Notifications")
284
sent_count = 0
0 commit comments