Skip to content

Commit 43643d4

Browse files
Merge branch 'ep2025' into ep2025-issue-1126
2 parents 556c20c + 42271d9 commit 43643d4

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.env.preview

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
EP_SESSIONS_API="https://static.europython.eu/programme/ep2025/releases/current/sessions.json"
2-
EP_SPEAKERS_API="https://static.europython.eu/programme/ep2025/releases/current/speakers.json"
1+
EP_SESSIONS_API="https://static.europython.eu/programme/ep2024/releases/current/sessions.json"
2+
EP_SPEAKERS_API="https://gist.githubusercontent.com/nikoshell/24f8c99de3758dc4ed1391876c382b43/raw/bdf11fe89e5010f35dc1351e9b71c02a19adefe2/24speakers.json"
3+
EP_SCHEDULE_API="https://static.europython.eu/programme/ep2024/releases/current/schedule.json"

.github/workflows/preview.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55

66
jobs:
77
preview:
8+
if: github.event.pull_request.head.repo.fork == false
89
name: Run preview
910
runs-on: ubuntu-latest
1011
env:

src/content/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ const speakers = defineCollection({
109109
submissions: z.array(reference("sessions")),
110110
affiliation: z.string().nullable(),
111111
homepage: z.string().nullable(),
112-
gitx_url: z.string().url().nullable(),
112+
gitx_url: z.string().url().nullable().optional(),
113113
linkedin_url: z.string().url().nullable(),
114114
mastodon_url: z.string().url().nullable(),
115-
bluesky_url: z.string().url().nullable(),
115+
bluesky_url: z.string().url().nullable().optional(),
116116
twitter_url: z.string().url().nullable(),
117117
}),
118118
});

0 commit comments

Comments
 (0)