docs: update repository name from 'fortinet-devops' to 'devops-toolkit' chore(doit.sh): update repository name in script commands The repository name was changed from 'fortinet-devops' to 'devops-toolkit' to better reflect the content and purpose of the repository. This change was propagated to all the documentation and script files where the old repository name was mentioned. This will ensure that all the links and commands in the documentation and scripts are pointing to the correct repository. #3
Workflow file for this run
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: 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 |