Latest Twitter Tweets #1072
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: Latest Twitter Tweets | |
on: | |
schedule: | |
# Runs once a day because using Free tier in Rss.app | |
- cron: '0 0 * * *' | |
workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the Github Actions Workflow page directly. | |
jobs: | |
update-readme-with-twitter: | |
name: Update this repo's README with latest tweets | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: gautamkrishnar/blog-post-workflow@master | |
with: | |
comment_tag_name: "TWITTER" | |
feed_list: "https://rss.app/feeds/RoPOx0BgFZICCQ2m.xml" | |
commit_message: "Updated with the latest tweets" |