There are 2 integrations you can use.

For both, you can call GET / endpoint to get metadata about the integrations..

GitHub integration

You can refer to this at: https://esm.town/v/cricks_unmixed4u/github-api/github-issues-monitor.cron.tsx

Example:

import { getGitHubIssuesUpdatedSinceLastRun } from "https://esm.town/v/cricks_unmixed4u/github-api/github-issues-monitor.cron.tsx";

const issues = await getGitHubIssuesUpdatedSinceLastRun(); // → issues updated since last run
console.log(issues);```

# Beeminder integration

You can refer to this at: https://esm.town/v/cricks_unmixed4u/beeminder-api/main.tsx

Example:

// Beeminder integration import { addBeeminderDatapoint } from "https://esm.town/v/cricks_unmixed4u/beeminder-api/main.tsx";

await addBeeminderDatapoint({ goal: "pushups", value: 20, comment: "morning set" });```