{"id":24812060,"url":"https://github.com/joschi/blueskyfeedbot","last_synced_at":"2025-07-18T21:34:28.283Z","repository":{"id":274883053,"uuid":"924371736","full_name":"joschi/blueskyfeedbot","owner":"joschi","description":" A bot that posts RSS feeds to Bluesky via GitHub Actions ","archived":false,"fork":false,"pushed_at":"2025-07-13T20:19:28.000Z","size":1602,"stargazers_count":93,"open_issues_count":5,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-13T22:17:16.107Z","etag":null,"topics":["bluesky","bluesky-bot","github-actions","rss","rss-feed"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/joschi.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,"zenodo":null}},"created_at":"2025-01-29T22:00:18.000Z","updated_at":"2025-07-13T20:19:30.000Z","dependencies_parsed_at":"2025-02-16T19:26:51.937Z","dependency_job_id":"e226d245-fd74-454b-90dd-e594abe51f45","html_url":"https://github.com/joschi/blueskyfeedbot","commit_stats":null,"previous_names":["joschi/blueskyfeedbot"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/joschi/blueskyfeedbot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joschi%2Fblueskyfeedbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joschi%2Fblueskyfeedbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joschi%2Fblueskyfeedbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joschi%2Fblueskyfeedbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joschi","download_url":"https://codeload.github.com/joschi/blueskyfeedbot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joschi%2Fblueskyfeedbot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265837688,"owners_count":23836558,"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":["bluesky","bluesky-bot","github-actions","rss","rss-feed"],"created_at":"2025-01-30T13:17:53.579Z","updated_at":"2025-07-18T21:34:28.250Z","avatar_url":"https://github.com/joschi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bluesky Feed Bot\n\nBluesky Feed Bot is a GitHub Action for posting RSS feeds to Bluesky via GitHub Actions workflows.\n\n## Usage\n\n1. Go to https://bsky.app/settings/app-passwords and add a new app password.\n\n   - Name it whatever you want.\n   - Save it and grab the app password.\n     For security reasons, you won't be able to view this again.\n     If you lose this app password, you'll need to generate a new one.\n\n2. Create a new GitHub repository.\n3. Go to your repository settings at `https://github.com/${YOUR_REPO}/settings/secrets/actions/new`, and add a new\n   secret with the value of the access token.\n4. Add a file named `.github/workflows/blueskyfeedbot.yml` with the following content:\n\n    ```yaml\n    name: FeedBot\n    on:\n      schedule:\n        # This will run every five minutes. Alter it using https://crontab.guru/.\n        - cron: '*/5 * * * *'\n      workflow_dispatch: # This allows manually running the workflow from the GitHub actions page\n    concurrency:\n      group: feedbot\n    jobs:\n      rss-to-bluesky:\n        runs-on: ubuntu-latest\n        steps:\n          - name: Generate cache key\n            uses: actions/github-script@v6\n            id: generate-key\n            with:\n              script: |\n                core.setOutput('cache-key', new Date().valueOf())\n          - name: Retrieve cache\n            uses: actions/cache@v3\n            with:\n              path: ${{ github.workspace }}/blueskyfeedbot\n              key: feed-cache-${{ steps.generate-key.outputs.cache-key }}\n              restore-keys: feed-cache-\n          - name: GitHub\n            uses: 'joschi/blueskyfeedbot@v1'\n            with:\n              # This is the RSS feed you want to publish\n              rss-feed: https://www.githubstatus.com/history.rss\n              # Template of status posted to Bluesky (Handlebars)\n              template: |\n                {{item.title}}\n    \n                {{item.link}}\n              # This is your service URL (optional)\n              service-url: https://bsky.social\n              # This is the Bluesky username (example: username.bsky.social)\n              username: ${{ secrets.BLUESKY_USERNAME }}\n              # This is the app password you created earlier\n              password: ${{ secrets.BLUESKY_PASSWORD }}\n              # This is a path to the cache file, using the above cache path\n              cache-file: ${{ github.workspace }}/blueskyfeedbot/cache.json\n              # The maximum number of posts created on the first run\n              initial-post-limit: 10\n    ```\n\n5. Commit and publish your changes.\n\n## Status template\n\nThe status template (`status-template`) is using [Handlebars](https://handlebarsjs.com/) as template engine.\n\nThe action is passing in an instance of `FeedData` (field `feedData`) and the current `FeedEntry` (field `item`) into the template:\n\n```typescript\nexport interface FeedEntry {\n  link?: string;\n  title?: string;\n  description?: string;\n  published?: Date;\n}\n\nexport interface FeedData {\n  link?: string;\n  title?: string;\n  description?: string;\n  generator?: string;\n  language?: string;\n  published?: Date;\n  entries?: Array\u003cFeedEntry\u003e;\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoschi%2Fblueskyfeedbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoschi%2Fblueskyfeedbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoschi%2Fblueskyfeedbot/lists"}