Skip to content

docs: add github-personal-access-token.md and update mkdocs.yml The new document, github-personal-access-token.md, provides instructions on how to create a Github personal access token. This token is necessary for the auto-pull-request.yml action to trigger additional workflows. The mkdocs.yml file has been updated to include this new document in the "CI/CD" section, and the order of the documents in this section has been rearranged for better flow and understanding. #2

docs: add github-personal-access-token.md and update mkdocs.yml The new document, github-personal-access-token.md, provides instructions on how to create a Github personal access token. This token is necessary for the auto-pull-request.yml action to trigger additional workflows. The mkdocs.yml file has been updated to include this new document in the "CI/CD" section, and the order of the documents in this section has been rearranged for better flow and understanding.

docs: add github-personal-access-token.md and update mkdocs.yml The new document, github-personal-access-token.md, provides instructions on how to create a Github personal access token. This token is necessary for the auto-pull-request.yml action to trigger additional workflows. The mkdocs.yml file has been updated to include this new document in the "CI/CD" section, and the order of the documents in this section has been rearranged for better flow and understanding. #2

---
name: mkdocs-build-test
on: # yamllint disable-line rule:truthy
pull_request:
paths:
- docs/**
- mkdocs.yml
- README.md
- requirements.txt
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
jobs:
mkdocs-build-test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
with:
python-version: 3.x
- name: Build Docs
env:
MKDOCS_GIT_COMMITTERS_APIKEY: ${{ secrets.PAT }}
run: |
pip install --upgrade pip
pip install -r requirements.txt
mkdocs build