Update README #15590
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: Update README | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0 5 * * *' | |
workflow_dispatch: | |
jobs: | |
update-readme-with-jobs: | |
name: Update README with latest jobs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: gautamkrishnar/blog-post-workflow@master | |
with: | |
comment_tag_name: "JOB-LIST" | |
commit_message: "Updated with the latest jobs" | |
committer_email: "[email protected]" | |
feed_list: "https://enrise.com/jobs.rss.xml" | |
readme_path: "profile/README.md" | |
max_post_count: 20 | |
update-readme-with-blog: | |
name: Update README with latest blog posts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: gautamkrishnar/blog-post-workflow@master | |
with: | |
comment_tag_name: "POST-LIST" | |
committer_email: "[email protected]" | |
feed_list: "https://enrise.com/posts.rss.xml" | |
readme_path: "profile/README.md" |