Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update function scheduling #8181

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,13 @@ export const remindMe = defineFunction({
// every sunday at midnight
"every week",
// every tuesday at 5pm
"0 17 * ? 3 *",
"0 17 ? * 3 *",
// every wednesday at 5pm
"0 17 * ? 4 *",
"0 17 ? * 4 *",
// every thursday at 5pm
"0 17 * ? 5 *",
"0 17 ? * 5 *",
// every friday at 5pm
"0 17 * ? 6 *",
"0 17 ? * 6 *",
]
})
```
Expand Down Expand Up @@ -143,9 +143,9 @@ export const remindMe = defineFunction({
name: "remind-me-to-take-the-trash-out",
schedule: [
// every tuesday at 9am
"0 9 * ? 3 *",
"0 9 ? * 3 *",
// every friday at 9am
"0 9 * ? 6 *",
"0 9 ? * 6 *",
]
})
```
Loading