-
-
Notifications
You must be signed in to change notification settings - Fork 3
61 lines (57 loc) · 2.22 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
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 Android
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/androiddev/.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/android/index.rss"
- 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/android/feed/"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "ANDROIDAUTHORITY-POST-LIST"
feed_list: "https://www.androidauthority.com/android-development/feed/"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "ANDROIDARSENAL-POST-LIST"
feed_list: "https://android-arsenal.com/rss"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "MEDIUM-POST-LIST"
feed_list: "https://medium.com/feed/tag/android"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "GIZMODO-POST-LIST"
feed_list: "https://gizmodo.com/tag/android/rss"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "MOBILEDEVMEMO-POST-LIST"
feed_list: "https://mobiledevmemo.com/feed/"
- uses: gautamkrishnar/blog-post-workflow@master
with:
max_post_count: "10"
comment_tag_name: "INFINUM-POST-LIST"
feed_list: "https://androidsweets.ongoodbits.com/feed"