π Link to Recent Updates #235
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: π Link to Recent Updates | |
on: | |
workflow_dispatch: # Manual dispatch | |
schedule: | |
- cron: '30 23 * * *' # At 23:30 each day | |
jobs: | |
links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/[email protected] | |
- name: Notes Links | |
uses: sarisia/actions-readme-feed@v1 | |
with: | |
file: RECENT.md | |
max_entry: 5 | |
allow_empty: true | |
format: '- `${2day} ${monthshort} ${year}` - **[${title}](${url})**' | |
url: https://raw.githubusercontent.com/khulnasoft-bot/feeds/main/blog.atom | |
start_flag: '<!-- blog-feed start -->' | |
end_flag: '<!-- blog-feed end -->' | |
- name: Reddit Links | |
uses: sarisia/actions-readme-feed@v1 | |
with: | |
file: RECENT.md | |
max_entry: 5 | |
allow_empty: true | |
format: '- `${2day} ${monthshort} ${year}` - **[${title}](${url})**' | |
url: https://raw.githubusercontent.com/khulnasoft-bot/feeds/main/reddit.atom | |
start_flag: '<!-- reddit-feed start -->' | |
end_flag: '<!-- reddit-feed end -->' | |
- name: Mastodon Links | |
uses: sarisia/actions-readme-feed@v1 | |
with: | |
file: RECENT.md | |
max_entry: 5 | |
allow_empty: true | |
format: '- `${2day} ${monthshort} ${year}` - **[${title}](${url})**' | |
url: https://raw.githubusercontent.com/khulnasoft-bot/feeds/main/mastodon.atom | |
start_flag: '<!-- mastodon-feed start -->' | |
end_flag: '<!-- mastodon-feed end -->' | |
- name: Twitter Links | |
uses: sarisia/actions-readme-feed@v1 | |
with: | |
file: RECENT.md | |
max_entry: 5 | |
allow_empty: true | |
format: '- `${2day} ${monthshort} ${year}` - **[${title}](${url})**' | |
url: https://raw.githubusercontent.com/khulnasoft-bot/feeds/main/twitter.atom | |
start_flag: '<!-- twitter-feed start -->' | |
end_flag: '<!-- twitter-feed end -->' | |
- name: StackOverflow Links | |
uses: sarisia/actions-readme-feed@v1 | |
with: | |
file: RECENT.md | |
max_entry: 5 | |
allow_empty: true | |
format: '- `${2day} ${monthshort} ${year}` - **[${title}](${url})**' | |
url: https://raw.githubusercontent.com/khulnasoft-bot/feeds/main/stackoverflow.atom | |
start_flag: '<!-- stackoverflow-feed start -->' | |
end_flag: '<!-- stackoverflow-feed end -->' | |
- name: GitHub Links | |
uses: sarisia/actions-readme-feed@v1 | |
with: | |
file: RECENT.md | |
max_entry: 5 | |
allow_empty: true | |
format: '- `${2day} ${monthshort} ${year}` - **[${title}](${url})**' | |
url: https://raw.githubusercontent.com/khulnasoft-bot/feeds/main/github.atom | |
start_flag: '<!-- github-feed start -->' | |
end_flag: '<!-- github-feed end -->' | |
- name: YouTube Links | |
uses: sarisia/actions-readme-feed@v1 | |
with: | |
file: RECENT.md | |
max_entry: 5 | |
allow_empty: true | |
format: '- `${2day} ${monthshort} ${year}` - **[${title}](${url})**' | |
url: https://raw.githubusercontent.com/khulnasoft-bot/feeds/main/youtube.atom | |
start_flag: '<!-- youtube-feed start -->' | |
end_flag: '<!-- youtube-feed end -->' | |
- name: DevTo Links | |
uses: sarisia/actions-readme-feed@v1 | |
with: | |
file: RECENT.md | |
max_entry: 5 | |
allow_empty: true | |
format: '- `${2day} ${monthshort} ${year}` - **[${title}](${url})**' | |
url: https://raw.githubusercontent.com/khulnasoft-bot/feeds/main/dev-to.atom | |
start_flag: '<!-- dev-to-feed start -->' | |
end_flag: '<!-- dev-to-feed end -->' | |
- name: Blogger Links | |
uses: sarisia/actions-readme-feed@v1 | |
with: | |
file: RECENT.md | |
max_entry: 5 | |
allow_empty: true | |
format: '- `${2day} ${monthshort} ${year}` - **[${title}](${url})**' | |
url: https://raw.githubusercontent.com/khulnasoft-bot/feeds/main/blogger.atom | |
start_flag: '<!-- blogger-feed start -->' | |
end_flag: '<!-- blogger-feed end -->' | |
- name: Commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: 'RECENT.md' | |
author_name: khulnasoft-bot | |
author_email: [email protected] | |
default_author: github_actor | |
message: 'π Updates links to recent updates' | |
push: true |