{"id":17972798,"url":"https://github.com/ww24/calendar-notifier","last_synced_at":"2026-02-18T00:31:10.679Z","repository":{"id":37866662,"uuid":"236347787","full_name":"ww24/calendar-notifier","owner":"ww24","description":"Google Calendar Notifier 📅","archived":false,"fork":false,"pushed_at":"2023-08-15T08:25:54.000Z","size":464,"stargazers_count":1,"open_issues_count":12,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-12T02:40:00.027Z","etag":null,"topics":["cloud-pubsub","google-calendar"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ww24.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-26T17:24:22.000Z","updated_at":"2023-02-22T05:46:42.000Z","dependencies_parsed_at":"2024-06-21T00:36:21.561Z","dependency_job_id":null,"html_url":"https://github.com/ww24/calendar-notifier","commit_stats":{"total_commits":100,"total_committers":4,"mean_commits":25.0,"dds":0.49,"last_synced_commit":"3f2e2589ad03f70f1833f5660e93adaff7084af0"},"previous_names":["ww24/calendar-worker"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ww24/calendar-notifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ww24%2Fcalendar-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ww24%2Fcalendar-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ww24%2Fcalendar-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ww24%2Fcalendar-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ww24","download_url":"https://codeload.github.com/ww24/calendar-notifier/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ww24%2Fcalendar-notifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29563467,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T21:50:49.831Z","status":"ssl_error","status_checked_at":"2026-02-17T21:46:15.313Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloud-pubsub","google-calendar"],"created_at":"2024-10-29T16:25:52.355Z","updated_at":"2026-02-18T00:31:10.650Z","avatar_url":"https://github.com/ww24.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"calendar-notifier\n===\n\n[![Go Reference][go-dev-img]][go-dev-url]\n![test-and-build][github-actions-img]\n\nCalendar Notifier provides event handler and actions triggered by Google Calendar.\n\n[![dockeri.co][dockeri-img]][dockeri-url]\n\n## Features\n\n- Events\n  - [x] [Calendar Events List API](https://developers.google.com/calendar/v3/reference/events/list)\n  - [ ] [Calendar Events Watch API](https://developers.google.com/calendar/v3/reference/events/watch)\n- Actions\n  - [x] HTTP Action\n  - [x] [Cloud Pub/Sub](https://cloud.google.com/pubsub/) Action\n  - [x] [Cloud Tasks](https://cloud.google.com/tasks/) Action\n\n## Setup\n\n- Create GCP Project\n  - https://cloud.google.com/resource-manager/docs/creating-managing-projects\n- Create GCP Service Account\n  - Role assignment is not required if it does not use pubsub action.\n  - https://cloud.google.com/iam/docs/creating-managing-service-accounts\n- Share Google Calendar with service account\n  - Use service account e-mail address. (e.g. `my-service-account@project-id.iam.gserviceaccount.com`)\n  - https://support.google.com/calendar/answer/37082\n- Set `SERVICE_ACCOUNT` environment. Use base64 encoded GCP Service Account JSON.\n  - `echo \"SERVICE_ACCOUNT=$(base64 \u003c service_account.json)\" \u003e .env`\n- Edit `config.sample.yml` and save as `config.yml`.\n- Set `CONFIG` environment. Use base64 encoded config.yml.\n  - `echo \"CONFIG=$(base64 \u003c config.yml)\" \u003e .env`\n\n## Usage\n\n### Use docker-compose\n\n- Run `docker-compose up`\n\n### Use docker\n\n- Run `docker build -t calendar-notifier .`\n- Run `docker run -e SERVICE_ACCOUNT=$(base64 \u003c service_account.json) -e CONFIG=$(base64 \u003c config.yml) calendar-notifier`\n\n## Permission\n\n### Cloud Tasks\n\nIf use Cloud Tasks Action, service account should have the following permissions.\n\n```\ncloudtasks.tasks.list\ncloudtasks.tasks.create\ncloudtasks.tasks.delete\niam.serviceAccounts.actAs\n```\n\nFor example, give your service account the following roles.\n\n```\nroles/cloudtasks.viewer\nroles/cloudtasks.enqueuer\nroles/cloudtasks.taskDeleter\nroles/iam.serviceAccountUser\n```\n\n#### References\n- https://cloud.google.com/tasks/docs/reference-access-control\n- https://cloud.google.com/iam/docs/understanding-service-accounts?hl=ja#sa_common\n\n\n### Cloud Pub/Sub\n\nIf use Cloud Pub/Sub Action, service account should have the following permissions.\n\n```\npubsub.topics.publish\n```\n\nFor example, give your service account the following roles.\n\n```\nroles/pubsub.publisher\n```\n\n\n#### References\n- https://cloud.google.com/pubsub/docs/access-control\n\n[github-actions-img]: https://github.com/ww24/calendar-notifier/workflows/Test%20on%20master/badge.svg?branch=master\n[dockeri-img]: https://dockeri.co/image/ww24/calendar-notifier\n[dockeri-url]: https://hub.docker.com/r/ww24/calendar-notifier\n[go-dev-img]: https://pkg.go.dev/badge/github.com/ww24/calendar-notifier.svg\n[go-dev-url]: https://pkg.go.dev/github.com/ww24/calendar-notifier\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fww24%2Fcalendar-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fww24%2Fcalendar-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fww24%2Fcalendar-notifier/lists"}