add action and llms.txt #1
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 LLMs List | |
on: | |
push: | |
branches: | |
- '**' # Runs on all branches | |
jobs: | |
update-llms: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: npm install node-fetch | |
- name: Run update script | |
run: node update_llms.js | |
- name: Check for changes | |
id: git-check | |
run: | | |
git diff --exit-code llms.txt || echo "changes=true" >> $GITHUB_OUTPUT | |
- name: Commit changes | |
if: steps.git-check.outputs.changes == 'true' | |
run: | | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git add llms.txt | |
git commit -m "Auto-update llms.txt" | |
git push |