Skip to content

Add temp run condition #2

Add temp run condition

Add temp run condition #2

Workflow file for this run

name: Get Repo Info
description: Gets updated repo info and commits the new info

Check failure on line 2 in .github/workflows/get-repo-info.yml

View workflow run for this annotation

GitHub Actions / Get Repo Info

Invalid workflow file

The workflow is not valid. .github/workflows/get-repo-info.yml (Line: 2, Col: 1): Unexpected value 'description' .github/workflows/get-repo-info.yml (Line: 3, Col: 1): Unexpected value 'inputs'
inputs:
github-token: ${{ secrets.GITHUB_TOKEN }}
# Run every night at midnight
# on:
# schedule:
# - cron: '0 0 * * *'
on:
push:
branches:
- main
jobs:
run-js-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: Get Repo Info
run: node src/lib/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