chore: first commit #19
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.txt List | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- "content/websites/**" | |
jobs: | |
update-readme: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.PAT_TOKEN }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install dependencies | |
uses: ./.github/actions/install | |
- name: Update README | |
run: node scripts/update-llms-list.js | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.PAT_TOKEN }} | |
commit-message: "docs: update llms.txt list [skip ci]" | |
title: "docs: update llms.txt list" | |
body: | | |
This PR updates the llms.txt list in README.md based on the current state of llms.txt in the repository. | |
- Updates completion status of patterns | |
- Adds new llms.txt | |
- Updates links to completed llms.txt | |
branch: update-llms-list | |
base: main | |
delete-branch: true | |
labels: | | |
documentation | |
automated pr | |
committer: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | |
author: github-actions[bot] <github-actions[bot]@users.noreply.github.com> |