{"id":29132365,"url":"https://github.com/expediagroup/flyte-ticker","last_synced_at":"2025-08-21T14:09:23.034Z","repository":{"id":150177368,"uuid":"129654522","full_name":"ExpediaGroup/flyte-ticker","owner":"ExpediaGroup","description":"Pack implementing cron-like scheduling in Flyte flows","archived":false,"fork":false,"pushed_at":"2024-03-05T05:35:11.000Z","size":19,"stargazers_count":1,"open_issues_count":1,"forks_count":5,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-06-30T06:44:42.564Z","etag":null,"topics":["chatops","crontab","flyte","flyte-pack","ifttt","workflows"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ExpediaGroup.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2018-04-15T21:58:40.000Z","updated_at":"2020-08-25T13:11:22.000Z","dependencies_parsed_at":"2023-08-27T01:48:14.309Z","dependency_job_id":null,"html_url":"https://github.com/ExpediaGroup/flyte-ticker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ExpediaGroup/flyte-ticker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExpediaGroup%2Fflyte-ticker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExpediaGroup%2Fflyte-ticker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExpediaGroup%2Fflyte-ticker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExpediaGroup%2Fflyte-ticker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ExpediaGroup","download_url":"https://codeload.github.com/ExpediaGroup/flyte-ticker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExpediaGroup%2Fflyte-ticker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271493232,"owners_count":24769117,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-21T02:00:08.990Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["chatops","crontab","flyte","flyte-pack","ifttt","workflows"],"created_at":"2025-06-30T06:39:38.342Z","updated_at":"2025-08-21T14:09:23.023Z","avatar_url":"https://github.com/ExpediaGroup.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flyte-ticker\n\n![Build Status](https://travis-ci.org/ExpediaGroup/flyte-ticker.svg?branch=master)\n[![Docker Stars](https://img.shields.io/docker/stars/hotelsdotcom/flyte-ticker.svg)](https://hub.docker.com/r/hotelsdotcom/flyte-ticker)\n[![Docker Pulls](https://img.shields.io/docker/pulls/hotelsdotcom/flyte-ticker.svg)](https://hub.docker.com/r/hotelsdotcom/flyte-ticker)\n\nA simple ticker pack for Flyte. Emits a \"Tick\" event every minute which can be\nused in flows for cron like behaviour. The event looks like this:\n\n    {\n        \"time\": \"2018-02-14T17:14:37.765525Z\"\n    }\n\nThat is, the time is in the [ISO-8601 format](https://en.wikipedia.org/wiki/ISO_8601).\n\n## Build\n\nPack requires go version 1.9+ and uses dep to manage dependencies (install dep\nand run `dep ensure` before build/test).\n\n- to build: `go build`\n- to test: `go test`\n- docker build `docker build -t \u003cname\u003e:\u003cversion\u003e .`\n\nOr, if you have make installed, you can use that. See the [Makefile](Makefile)\nfor available targets.\n\n## Configuration\n\nThe plugin is configured using environment variables:\n\nENV VAR                          | Default  |  Description                               | Example               \n ------------------------------- |  ------- |  ----------------------------------------- |  ---------------------\n`FLYTE_API`                      | -        | The API endpoint to use                    | http://localhost:8080\n`FLYTE_API_TIMEOUT`              | 10 secs  | Combined timeout for accessing the API     | 20\n`FLYTE_LABELS`                   | -        | Labels to disambiguate this instance       | env=staging,bar=foo\n\n\n## Example Flow\n\nThis flow sends a friendly greeting at 9am every morning!:\n```json\n{\n  \"name\": \"tick_demo\",\n  \"description\": \"Demo echoing tick events to Slack room\",\n  \"steps\": [\n    {\n      \"id\": \"get_tick\",\n      \"event\": {\n        \"packName\": \"Ticker\",\n        \"name\": \"Tick\"\n      },\n      \"criteria\": \"{{ Event.Payload.time | match: 'T09:' }}\",\n      \"context\": {\n        \"Time\": \"{{ Event.Payload.time }}\"\n      },\n      \"command\": {\n        \"packName\": \"Slack\",\n        \"name\": \"SendMessage\",\n        \"input\": {\n          \"channelId\":\"\u003cSLACK CHANNEL ID\u003e\",\n          \"message\":\"Good morning everyone!\"\n        }\n      }\n    }\n  ]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexpediagroup%2Fflyte-ticker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexpediagroup%2Fflyte-ticker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexpediagroup%2Fflyte-ticker/lists"}