{"id":30657684,"url":"https://github.com/slashnephy/feedchime","last_synced_at":"2025-10-06T21:04:37.309Z","repository":{"id":38236355,"uuid":"339681466","full_name":"SlashNephy/feedchime","owner":"SlashNephy","description":"🔔 Simple RSS feed notifier which supports Discord Webhook","archived":false,"fork":false,"pushed_at":"2025-08-25T02:03:15.000Z","size":678,"stargazers_count":2,"open_issues_count":27,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-25T05:39:07.093Z","etag":null,"topics":["discord","kotlin","rss","webhook"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/SlashNephy.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,"zenodo":null}},"created_at":"2021-02-17T10:09:24.000Z","updated_at":"2022-05-13T10:25:53.000Z","dependencies_parsed_at":"2023-01-22T16:15:13.258Z","dependency_job_id":"ac6008d3-8c6a-416f-bb9f-aec991ffd77d","html_url":"https://github.com/SlashNephy/feedchime","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/SlashNephy/feedchime","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SlashNephy%2Ffeedchime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SlashNephy%2Ffeedchime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SlashNephy%2Ffeedchime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SlashNephy%2Ffeedchime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SlashNephy","download_url":"https://codeload.github.com/SlashNephy/feedchime/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SlashNephy%2Ffeedchime/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272971557,"owners_count":25024100,"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-31T02:00:09.071Z","response_time":79,"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":["discord","kotlin","rss","webhook"],"created_at":"2025-08-31T11:16:38.576Z","updated_at":"2025-10-06T21:04:32.269Z","avatar_url":"https://github.com/SlashNephy.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# feedchime\n\n🔔 Simple RSS feed notifier which supports Discord Webhook\n\n[![Kotlin](https://img.shields.io/badge/Kotlin-1.6-blue)](https://kotlinlang.org)\n[![GitHub release (latest by date)](https://img.shields.io/github/v/release/SlashNephy/feedchime)](https://github.com/SlashNephy/feedchime/releases)\n[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/SlashNephy/feedchime/Docker)](https://hub.docker.com/r/slashnephy/feedchime)\n[![license](https://img.shields.io/github/license/SlashNephy/feedchime)](https://github.com/SlashNephy/feedchime/blob/master/LICENSE)\n[![issues](https://img.shields.io/github/issues/SlashNephy/feedchime)](https://github.com/SlashNephy/feedchime/issues)\n[![pull requests](https://img.shields.io/github/issues-pr/SlashNephy/feedchime)](https://github.com/SlashNephy/feedchime/pulls)\n\n[![screenshot.png](https://raw.githubusercontent.com/SlashNephy/feedchime/master/docs/screenshot.png)](https://github.com/SlashNephy/feedchime)\n\n## Requirements\n\n- Java 17 or later\n\n## Get Started\n\n`config.yml`\n\n```yaml\n# フィードの取得間隔 (秒)\n# 10 未満の値はエラーになります\ninterval: 3600\n# 一度のチェックで通知する最大数\nlimit: 1\n# User-Agent\n# userAgent: xxx\n# ログレベル (OFF, ERROR, WARN, INFO, DEBUG, TRACE, ALL)\nlogLevel: 'TRACE'\n\n# 通知チャンネル定義のリスト\nchannels:\n    #  Discord Webhook URL\n  - discordWebhookUrl: 'https://discord.com/api/webhooks/xxx/xxx'\n    # チェックするフィード定義のリスト\n    feeds:\n        # フィード URL\n      - url: 'https://www.publickey1.jp/atom.xml'\n        # Webhook のユーザ名\n        name: 'PublicKey'\n        # Webhook のアバター URL\n        avatarUrl: 'https://www.publickey1.jp/favicon.ico'\n        # フィルター定義\n        filter:\n          # 含めるタイトル (部分一致)\n          titles:\n            - 'Docker'\n          # 無視するタイトル (部分一致)\n          ignoreTitles:\n            - '[PR]'\n```\n\n### Docker\n\nThere are some image tags.\n\n- `ghcr.io/slashnephy/feedchime:latest`  \n  Automatically published every push to `master` branch.\n- `ghcr.io/slashnephy/feedchime:dev`  \n  Automatically published every push to `dev` branch.\n- `ghcr.io/slashnephy/feedchime:\u003cversion\u003e`  \n  Coresponding to release tags on GitHub.\n\n`docker-compose.yml`\n\n```yaml\nversion: '3.8'\n\nservices:\n  feedchime:\n    container_name: feedchime\n    image: ghcr.io/slashnephy/feedchime:latest\n    restart: always\n    volumes:\n      - ./config.yml:/app/config.yml:ro\n      - data:/app/data\n\nvolumes:\n  data:\n    driver: local\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslashnephy%2Ffeedchime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslashnephy%2Ffeedchime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslashnephy%2Ffeedchime/lists"}