You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
join_url=existing_series_entry_for_zoom.get("zoom_link", "Link not found in mapping")
348
+
reusing_series_meeting=True# Mark that we reused
349
+
print(f"[DEBUG] Reusing existing Zoom meeting {zoom_id} for call series '{call_series}'")
350
+
comment_lines.append(f"\n**Zoom Meeting:** Reusing existing meeting for series '{call_series.upper()}' ({zoom_id})")
351
+
comment_lines.append(f"- Join URL: {join_url}")
352
+
else:
353
+
# Skipped via issue input, need placeholder
354
+
print("[DEBUG] Zoom creation skipped via issue input. Using placeholder Zoom ID.")
355
+
zoom_id=f"placeholder-skipped-{issue.number}"
356
+
join_url="Zoom creation skipped via issue input"
326
357
else:
327
-
# Not reusing, proceed with create/update logic based on issue number
328
-
print(f"[DEBUG] No existing meeting found for series '{call_series}' or not a recurring series call. Checking for meeting tied to issue #{issue_number}.")
358
+
# Proceed with Zoom creation/update logic (as skip_zoom_creation is False)
359
+
# No need to check for series again, just check for existing meeting tied to this issue
360
+
print(f"[DEBUG] Proceeding with Zoom creation/update for issue #{issue_number}.")
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/onetime-protocol-call.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,8 @@ assignees: ''
11
11
12
12
- Date and time in UTC in format `month, day, year, time` with link to savvytime.com or timeanddate.com. E.g. [Jan 16, 2025, 14:00 UTC](https://savvytime.com/converter/utc/jan-16-2025/2pm)
13
13
- Duration in minutes : XXX
14
-
- Already on Ethereum Calendar : false # Set to true if this meeting is already on the Ethereum public calendar
14
+
- Already a Zoom meeting ID : false # Set to true if this meeting is already on the auto recording Ethereum zoom (will not create a zoom ID if true)
15
+
- Already on Ethereum Calendar : false # Set to true if this meeting is already on the Ethereum public calendar (will not create calendar event)
- Already on Ethereum Calendar : false # Set to true if this meeting is already on the Ethereum public calendar (will not create zoom and calendar event)
17
+
- Already a Zoom meeting ID : false # Set to true if this meeting is already on the auto recording Ethereum zoom (will not create a zoom ID if true)
18
+
- Already on Ethereum Calendar : false # Set to true if this meeting is already on the Ethereum public calendar (will not create calendar event)
18
19
- Need YouTube stream links : true # Set to false if you don't want YouTube stream links created
0 commit comments