-
-
Notifications
You must be signed in to change notification settings - Fork 4
79 lines (77 loc) · 3.01 KB
/
blogpost-workflow.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
name: Latest articles and podcasts
on:
workflow_dispatch:
schedule:
# Runs every day
- cron: '0 1 * * *'
jobs:
update-readme-with-posts:
name: Update this repo's README with latest articles and podcasts on Java
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "REDDIT-POST-LIST"
feed_list: "https://www.reddit.com/r/java/.rss"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "INFOWORLD-POST-LIST"
feed_list: "https://www.infoworld.com/category/java/index.rss"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "LETSTALK-POST-LIST"
feed_list: "http://letstalkaboutjava.blogspot.com/feeds/posts/default?alt=rss"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "RANDOMTHOUGHTS-POST-LIST"
feed_list: "http://randomthoughtsonjavaprogramming.blogspot.com/feeds/posts/default?alt=rss"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "BETTERCODE-POST-LIST"
feed_list: "https://betterjavacode.com/feed"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "INSIDE-POST-LIST"
feed_list: "https://inside.java/feed.xml"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "JAVAPROG-POST-LIST"
feed_list: "https://www.thejavaprogrammer.com/feed/"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "DREAMIX-POST-LIST"
feed_list: "https://dreamix.eu/blog/category/java/feed"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "PLUMBR-POST-LIST"
feed_list: "https://plumbr.io/blog/feed"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "TJ-POST-LIST"
feed_list: "https://thorben-janssen.com/feed/"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "REDHAT-POST-LIST"
feed_list: "https://developers.redhat.com/blog/tag/java/feed/"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "JAVACODEGEEKS-POST-LIST"
feed_list: "https://www.javacodegeeks.com/feed"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "DEVCASES-POST-LIST"
feed_list: "https://devcases.com/feed/"