Skip to content

Merge pull request #24 from mad-finance/madfi-money-clubs #30

Merge pull request #24 from mad-finance/madfi-money-clubs

Merge pull request #24 from mad-finance/madfi-money-clubs #30

Workflow file for this run

name: Sync Modules
on:
push:
branches:
- master
workflow_dispatch:
branches:
- master
jobs:
check-modules:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Install Dependencies
run: npm install axios
- name: Run Sync Script
run: node scripts/sync.js
env:
SECRET: ${{ secrets.SECRET }}
- name: Commit and push changes
run: |
git config --local user.name "GitHub Action"
git config --local user.email "action@github.com"
git add scripts/last-synced.json
git diff --staged --quiet || git commit -m "ci: update last-synced.json"
git push origin master