-
Notifications
You must be signed in to change notification settings - Fork 2
113 lines (110 loc) · 4.34 KB
/
insert-recent-links.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
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