{"id":19768997,"url":"https://github.com/olegsu/rss-sync","last_synced_at":"2025-07-07T12:09:05.006Z","repository":{"id":97661173,"uuid":"261221661","full_name":"olegsu/rss-sync","owner":"olegsu","description":"Sync RSS feed to targets","archived":false,"fork":false,"pushed_at":"2020-11-17T04:46:17.000Z","size":75,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-11T00:33:34.463Z","etag":null,"topics":["open-intergration","rss","rss-sync","trello"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/olegsu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-05-04T15:21:55.000Z","updated_at":"2020-11-17T04:46:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"977088ac-27c7-4ba8-9d58-2c9eb69a6f73","html_url":"https://github.com/olegsu/rss-sync","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olegsu%2Frss-sync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olegsu%2Frss-sync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olegsu%2Frss-sync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olegsu%2Frss-sync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/olegsu","download_url":"https://codeload.github.com/olegsu/rss-sync/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241100869,"owners_count":19909796,"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","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":["open-intergration","rss","rss-sync","trello"],"created_at":"2024-11-12T04:41:09.766Z","updated_at":"2025-02-28T04:23:43.302Z","avatar_url":"https://github.com/olegsu.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RSS-Sync\n\nRSS-Sync will sync you rss feed into support targets (Trello atm).\nI use it as to sync my favourite podcasts and add them to my Trello board so I dont forget to listen.\n\n\n* The input to the program is `feed.yaml` file that describes the rss, targets and the binding between them [FEED].\n* It uses go template as templat engine together with [gomplate](https://docs.gomplate.ca/) to extend the functionality\n  * {{ .feed }} - to access the feed tol level properties as it parsed using [gofeed](github.com/mmcdole/gofeed) (items are removed)\n  * {{ .item }} - to access the current rss item that matched to the filters\n  * {{ .source }} - to access the current source from `feed.yaml`\n  * {{ .binding }} - to access the current binding from `feed.yaml`\n  * {{ .target }} - to access the current target from `feed.yaml`\n* open-integration pipeline - [read more](https://dev.to/olegsu/continuous-automation-with-open-integration-4f5a) about open-intergration \n\n\nFor example:\n```yaml\ntargets:\n# Unique name of the target\n- name: This Week List\n    trello:\n    # Trello API token - https://trello.com/app-key\n    token: '{{ env.Getenv \"TRELLO_TOKEN\" }}'\n    # Trello application ID - https://trello.com/app-key\n    application-id: '{{ env.Getenv \"TRELLO_APP_ID\" }}'\n    # Trello board id - get it from the URL\n    board-id: '{{ env.Getenv \"TRELLO_BOARD_ID\" }}'\n    # Trello list id - get if from https://trello.com/b/{board-id}.json\n    list-id: '{{ env.Getenv \"TRELLO_LIST_ID\" }}'\n    \n    # Data about the card to be created\n    card:\n        title: '[{{ .source.name }}] Listen to: {{ .item.title }}'\n        description: \"{{ .feed.title }}\\nLink: {{ .item.link }}\\nDescription: {{ .item.description }}\"\n        # Lables ID's\n        labels: []\n\n\nsources:\n# Unique name of the target\n- name: Making History\n  # RSS feed url \n  url: https://www.ranlevi.com/feed/mh_network_feed\n  # set of filter to run on each RSS item\n  # all the filter must to pass in order to pass the item to the target\n  filter:\n    \n    # name of the filter can be anything\n    # the value must be \"true\" at the end of the templating process in order to consider the filter as successful\n    # only items that been released in the last 24 hours\n    just-released: '{{ ((time.Now).Add (time.Hour -24)).Before (time.Parse \"Mon, 02 Jan 2006 15:04:05 -0700\" .item.published) }}'\n\n#  In some cased the RSS feed is username-password protected  \n#  auth:\n#    username: '{{ env.Getenv \"USERNAME\" }}'\n#    password: '{{ env.Getenv \"PASSWORD\" }}'    \n\n# binding between rss and target \nbindings:\n- name: Making History\n  rss: Making History\n  target: This Week List\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folegsu%2Frss-sync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Folegsu%2Frss-sync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folegsu%2Frss-sync/lists"}