We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baac29a commit 528da93Copy full SHA for 528da93
2 files changed
.github/workflows/deploy.yml
@@ -4,6 +4,8 @@ name: Deploy static content to Pages
4
on:
5
push:
6
branches: [main]
7
+ schedule:
8
+ - cron: "0 */5 * * *"
9
10
# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages
11
permissions:
src/app.ts
@@ -21,7 +21,7 @@ import * as icaltz from "@touch4it/ical-timezones";
21
let events: ILesson[] = [];
22
23
const timetable = await untis.getOwnTimetableForRange(
24
- new Date(),
+ new Date(2024, 0, 21),
25
new Date(2024, 5, 27)
26
);
27
0 commit comments