fix: syndication tweaks
This commit is contained in:
parent
46d7bf28a4
commit
55cf750643
2 changed files with 23 additions and 1 deletions
3
.github/workflows/scheduled-post.yaml
vendored
3
.github/workflows/scheduled-post.yaml
vendored
|
@ -1,5 +1,6 @@
|
||||||
name: Scheduled follow feed to Mastodon
|
name: Scheduled follow feed to Mastodon
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 */2 * * *'
|
- cron: '0 */2 * * *'
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -11,7 +12,7 @@ jobs:
|
||||||
- name: Feed to Mastodon
|
- name: Feed to Mastodon
|
||||||
uses: nhoizey/github-action-feed-to-mastodon@v2
|
uses: nhoizey/github-action-feed-to-mastodon@v2
|
||||||
with:
|
with:
|
||||||
feedUrl: "https://coryd.dev/follow.json"
|
feedUrl: "https://coryd.dev/feeds/follow.json"
|
||||||
mastodonInstance: "https://social.lol"
|
mastodonInstance: "https://social.lol"
|
||||||
mastodonToken: ${{ secrets.MASTODON_TOKEN }}
|
mastodonToken: ${{ secrets.MASTODON_TOKEN }}
|
||||||
globalDelayToots: 0
|
globalDelayToots: 0
|
||||||
|
|
21
src/feeds/follow.json.liquid
Normal file
21
src/feeds/follow.json.liquid
Normal file
|
@ -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 %}
|
||||||
|
]
|
||||||
|
}
|
Reference in a new issue