Stackoverflow activity doesn't show activity #106
Answered
by
gautamkrishnar
nardiyansah
asked this question in
Q&A
-
Hello @gautamkrishnar , I recently use your GitHub action and in the section for StackOverflow it just gives a link to the page, didn't show activity like |
Beta Was this translation helpful? Give feedback.
Answered by
gautamkrishnar
Nov 8, 2021
Replies: 1 comment 1 reply
-
@nardiyansah have you tried using the following config: name: Latest stack overflow activity
on:
schedule:
# Runs every 5 minutes
- cron: '0 1 * * *'
workflow_dispatch:
jobs:
update-readme-with-stack-overflow:
name: Update this repo's README with latest activity from StackOverflow
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gautamkrishnar/blog-post-workflow@master
with:
comment_tag_name: "STACKOVERFLOW"
commit_message: "Updated readme with the latest stackOverflow data"
feed_list: "https://stackoverflow.com/feeds/user/15678198,https://askubuntu.com/feeds/user/1522489"
filter_comments: "" |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
nardiyansah
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@nardiyansah have you tried using the following config: