Update Readme #559
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 | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push events but only for the main branch | |
push: | |
branches: [ main ] | |
schedule: | |
- cron: '0 5 * * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Set up node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- uses: actions/cache@v1 | |
name: Cache dependencies and build outputs to improve workflow execution time. | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-js-${{ hashFiles('package-lock.json') }} | |
- run: npm install | |
name: Install dependencies | |
- run: node index.js | |
name: Generate README file | |
- run: |- | |
git add . | |
git diff | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Action Bot" | |
git commit -m "Updated README" -a || echo "No changes to commit" | |
git push | |
name: Commit and Push new README.md to the repository |