Dynamic README injection #1014
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: Dynamic README injection | |
on: | |
schedule: | |
# Runs at 12am UTC | |
# - cron: "0 0 * * *" | |
# Runs at 12pm UTC every 2 days | |
- cron: "0 12 */2 * *" | |
workflow_dispatch: | |
jobs: | |
get-office-quotes: | |
name: Update this repo's README with office-quotes | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14.6.0 | |
- run: yarn | |
- run: node . | |
- name: Pull Changes | |
run: | | |
git config pull.rebase false | |
git pull | |
- name: Add Changes | |
run: | | |
git add . | |
- name: Commit Changes | |
run: | | |
git config --global user.name "ZikaZaki" | |
git config --global user.email "17160061@su.edu.ye" | |
git commit --allow-empty -a -m "[Automated] README updated with new Office quote!" | |
- name: Push Changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# run: | | |
# git config pull.rebase false | |
# git pull | |
# git add . | |
# git config --global user.name "Your Name" | |
# git config --global user.email "Your E-Mail" | |
# git commit -a -m "[Automated] README updated with new Office quote!" | |
# - name: Push | |
# uses: ad-m/github-push-action@master | |
# with: | |
# github_token: ${{ secrets.GITHUB_TOKEN }} | |
# branch: ${{ github.ref }} | |
# # ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
update-readme-with-blog: | |
needs: get-office-quotes | |
name: Update this repo's README with latest blog posts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: gautamkrishnar/blog-post-workflow@master | |
with: | |
# Replace this URL with your rss feed URL/s | |
max_post_count: "4" | |
feed_list: "https://dev.to/feed/zikazaki" | |
update-waka-readme: | |
name: Update this repo's Waka-README | |
runs-on: ubuntu-latest | |
steps: | |
- uses: athul/waka-readme@master | |
with: | |
WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} |