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
|[Basic delay](https://github.com/triggerdotdev/examples/blob/main/delays/src/jobs/delayJob.ts)| Logs a message to the console, waits for 5 minutes, and then logs another message. | N/A |
16
-
|[Basic interval](https://github.com/triggerdotdev/examples/blob/main/scheduled/src/jobs/interval.ts)| This Job will run every 60 seconds, starting 60 seconds after this Job is first indexed. | N/A |
17
-
|[Cron scheduled interval](https://github.com/triggerdotdev/examples/blob/main/scheduled/src/jobs/cronScheduled.ts)| A scheduled Job which runs at 2:30pm every Monday. | N/A |
18
-
|[OpenAI text summarizer](https://github.com/triggerdotdev/examples/blob/main/openai-text-summarizer/src/jobs/textSummarizer.ts)| Summarizes a block of text, pulling out the most unique and helpful points using OpenAI GPT-3.5 turbo. |[OpenAI](/integrations/apis/openai)|
19
-
|[Tell me a joke using OpenAI](https://github.com/triggerdotdev/examples/blob/main/openai/src/jobs/tellMeAJoke.ts)| Generates a random joke using OpenAI GPT 3.5. |[OpenAI](/integrations/apis/openai)|
20
-
|[Generate an image using OpenAI](https://github.com/triggerdotdev/examples/blob/main/openai/src/jobs/generateHedgehogImages.ts)| Generates a random image of a hedgehog using OpenAI DALL-E. |[OpenAI](/integrations/apis/openai)|
21
-
|[GitHub issue reminder](https://github.com/triggerdotdev/examples/blob/main/github-issue-reminder/jobs/githubIssue.ts)| Sends a Slack message to a channel if a GitHub issue is left open for 24 hours |[GitHub](/integrations/apis/github), [Slack](/integrations/apis/slack)|
22
-
|[Github new star alert in Slack](https://github.com/triggerdotdev/examples/blob/main/github/src/jobs/newStarToSlack.ts)| When a repo is starred, a message is sent to a Slack channel with the name and URL of the GitHub user who starred the repo, and the updated Stargazers count. |[GitHub](/integrations/apis/github), [Slack](/integrations/apis/slack)|
23
-
|[Add a custom label to a GitHub issue when it is created](https://github.com/triggerdotdev/examples/blob/main/github/src/jobs/onIssueOpened.ts)| When a new GitHub issue is opened it adds a "Bug" label to it. |[GitHub](/integrations/apis/github)|
24
-
|[GitHub new star alert](https://github.com/triggerdotdev/examples/blob/main/github/src/jobs/newStarAlert.ts)| When a repo is starred a message is logged with the new Stargazers count. |[GitHub](/integrations/apis/github)|
25
-
|[Send a Slack message when an event is received](https://github.com/triggerdotdev/examples/blob/main/slack/src/jobs/sendSlackMessage.ts)| Sends a Slack message to a specific channel when an event is received. |[Slack](/integrations/apis/slack)|
26
-
|[Send an email using Resend](https://github.com/triggerdotdev/examples/blob/main/resend/src/jobs/resendBasicEmail.ts)| Send a basic email using Resend |[Resend](/integrations/apis/resend)|
13
+
| Job (code in link) | Description | Integrations used |
|[Basic delay](https://github.com/triggerdotdev/examples/blob/main/delays/src/jobs/delayJob.ts)| Logs a message to the console, waits for 5 minutes, and then logs another message. | N/A |
16
+
|[Basic interval](https://github.com/triggerdotdev/examples/blob/main/scheduled/src/jobs/interval.ts)| This Job will run every 60 seconds, starting 60 seconds after this Job is first indexed. | N/A |
17
+
|[Cron scheduled interval](https://github.com/triggerdotdev/examples/blob/main/scheduled/src/jobs/cronScheduled.ts)| A scheduled Job which runs at 2:30pm every Monday. | N/A |
18
+
|[Supabase user management starter](https://github.com/triggerdotdev/examples/blob/main/supabase-onboarding-emails/jobs/supabase.ts)| When a user signs up and confirms their email address, they will receive 3 "onboarding" emails over 2 days |[Supabase](/integrations/apis/supabase)[Resend](/integrations/apis/resend)|
19
+
|[OpenAI text summarizer](https://github.com/triggerdotdev/examples/blob/main/openai-text-summarizer/src/jobs/textSummarizer.ts)| Summarizes a block of text, pulling out the most unique and helpful points using OpenAI GPT-3.5 turbo. |[OpenAI](/integrations/apis/openai)|
20
+
|[Tell me a joke using OpenAI](https://github.com/triggerdotdev/examples/blob/main/openai/src/jobs/tellMeAJoke.ts)| Generates a random joke using OpenAI GPT 3.5. |[OpenAI](/integrations/apis/openai)|
21
+
|[Generate an image using OpenAI](https://github.com/triggerdotdev/examples/blob/main/openai/src/jobs/generateHedgehogImages.ts)| Generates a random image of a hedgehog using OpenAI DALL-E. |[OpenAI](/integrations/apis/openai)|
22
+
|[GitHub issue reminder](https://github.com/triggerdotdev/examples/blob/main/github-issue-reminder/jobs/githubIssue.ts)| Sends a Slack message to a channel if a GitHub issue is left open for 24 hours |[GitHub](/integrations/apis/github), [Slack](/integrations/apis/slack)|
23
+
|[Github new star alert in Slack](https://github.com/triggerdotdev/examples/blob/main/github/src/jobs/newStarToSlack.ts)| When a repo is starred, a message is sent to a Slack channel with the name and URL of the GitHub user who starred the repo, and the updated Stargazers count. |[GitHub](/integrations/apis/github), [Slack](/integrations/apis/slack)|
24
+
|[Add a custom label to a GitHub issue when it is created](https://github.com/triggerdotdev/examples/blob/main/github/src/jobs/onIssueOpened.ts)| When a new GitHub issue is opened it adds a "Bug" label to it. |[GitHub](/integrations/apis/github)|
25
+
|[GitHub new star alert](https://github.com/triggerdotdev/examples/blob/main/github/src/jobs/newStarAlert.ts)| When a repo is starred a message is logged with the new Stargazers count. |[GitHub](/integrations/apis/github)|
26
+
|[Send a Slack message when an event is received](https://github.com/triggerdotdev/examples/blob/main/slack/src/jobs/sendSlackMessage.ts)| Sends a Slack message to a specific channel when an event is received. |[Slack](/integrations/apis/slack)|
27
+
|[Send an email using Resend](https://github.com/triggerdotdev/examples/blob/main/resend/src/jobs/resendBasicEmail.ts)| Send a basic email using Resend |[Resend](/integrations/apis/resend)|
27
28
28
29
If you have any ideas for Jobs you would like to build, you can fill in the [Job request form](https://bcymafitv0e.typeform.com/to/YLUKy9my#source=example-jobs-docs).
0 commit comments