From 55cf7506435e54bd6b93d2885ae671371a787d79 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 5 Sep 2023 09:43:48 -0700 Subject: [PATCH] fix: syndication tweaks --- .github/workflows/scheduled-post.yaml | 3 ++- src/feeds/follow.json.liquid | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 src/feeds/follow.json.liquid diff --git a/.github/workflows/scheduled-post.yaml b/.github/workflows/scheduled-post.yaml index c9b04ad1..091c6f38 100644 --- a/.github/workflows/scheduled-post.yaml +++ b/.github/workflows/scheduled-post.yaml @@ -1,5 +1,6 @@ name: Scheduled follow feed to Mastodon on: + workflow_dispatch: schedule: - cron: '0 */2 * * *' jobs: @@ -11,7 +12,7 @@ jobs: - name: Feed to Mastodon uses: nhoizey/github-action-feed-to-mastodon@v2 with: - feedUrl: "https://coryd.dev/follow.json" + feedUrl: "https://coryd.dev/feeds/follow.json" mastodonInstance: "https://social.lol" mastodonToken: ${{ secrets.MASTODON_TOKEN }} globalDelayToots: 0 diff --git a/src/feeds/follow.json.liquid b/src/feeds/follow.json.liquid new file mode 100644 index 00000000..92401276 --- /dev/null +++ b/src/feeds/follow.json.liquid @@ -0,0 +1,21 @@ +--- +permalink: /feeds/follow.json +--- +{% assign posts = follow.posts %} +{ +"version": "https://jsonfeed.org/version/1", +"title": "All activity • Cory Dransfeldt", +"icon": "https://coryd.dev/static/images/avatar.webp", +"home_page_url": "https://coryd.dev", +"feed_url": "https://coryd.dev/follow.json", +"items": [{% for item in posts %} + { + "id": "{{ item.id }}", + "title": "{{ item.title }}", + "url": "{{ item.url }}", + "content_text": "{{ item.title }} {{ item.url }}", + "date_published": "{{ item.date_published | date: "%Y-%m-%dT%H:%M:%S-08:00" }}" + }{% if not forloop.last %},{% endif %} +{% endfor %} +] +} \ No newline at end of file