Merge pull request #14 from diegolealco/main #86
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 Projects | |
on: | |
push: | |
branches: [main] | |
jobs: | |
update-projects: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install dependencies | |
run: npm install | |
- name: Update Projects | |
run: npm run update-list | |
- name: Add, Commit and Push | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Update Projects" |