Skip to content

install deps

install deps #12

Workflow file for this run

name: Get Repo Info
# Run every night at midnight
# on:
# schedule:
# - cron: '0 0 * * *'
on:
push:
branches:
- main
jobs:
get-info-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.5.1'
- name: Install deps
run: |
npm install @actions/core
npm install @actions/github
- name: Get Repo Info
run: node src/lib/scripts/GetRepoInfo.js
- name: Commit Repo Changes
run: |
git config --local user.email "q2d2.noreply@gmail.com"
git config --local user.name "q2d2"
git add .
git commit -m "Updated Repo Info"
git push