Phase 8: Gitea CI — runner probe + PR gating jobs (fast-checks + api) #3

Merged
luckberg merged 66 commits from gsd/phase-08-gitea-ci into main 2026-06-11 16:11:42 -04:00
Showing only changes of commit d3c6726301 - Show all commits
+5 -1
View File
@@ -75,7 +75,11 @@ export default async function globalSetup(): Promise<void> {
// Uses a future dtstart_utc so the event is visible in the UI's default "upcoming" view.
const uid = 'e2e-seed-event-001'
const futureStart = new Date(Date.now() + 24 * 60 * 60 * 1000) // tomorrow UTC
const futureStartUtc = futureStart.toISOString().replace(/\.\d+Z$/, 'Z') // trim ms
// MariaDB TIMESTAMP requires 'YYYY-MM-DD HH:MM:SS' format, not ISO 8601 with 'T'.
const futureStartUtc = futureStart
.toISOString()
.replace('T', ' ')
.replace(/\.\d+Z$/, '')
const rawVevent = [
'BEGIN:VCALENDAR',
'VERSION:2.0',