feat: post to bluesky
This commit is contained in:
parent
22b75f0a42
commit
a8f47ff8ed
2 changed files with 21 additions and 1 deletions
20
.github/workflows/scheduled-post-bluesky.yaml
vendored
Normal file
20
.github/workflows/scheduled-post-bluesky.yaml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: Scheduled follow feed to BlueSky
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 */2 * * *'
|
||||
jobs:
|
||||
Feed2SocialMedia:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Feed to social media
|
||||
uses: lwojcik/github-action-feed-to-social-media@v2
|
||||
with:
|
||||
feedUrl: "https://coryd.dev/feeds/posts"
|
||||
newestItemStrategy: "latestDate"
|
||||
postFormat: "📝: {title}\n\n{link}"
|
||||
blueskyEnable: true
|
||||
blueskyHandle: "cdme.bsky.social"
|
||||
blueskyAppPassword: ${{ secrets.BLUESKY_TOKEN }}
|
||||
blueskyOwnerHandle: "cdme.bsky.social"
|
||||
blueskyOwnerContact: "hi@coryd.dev"
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "5.3.13",
|
||||
"version": "5.4.13",
|
||||
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
Reference in a new issue