[PR #643/e43d253f backport][stable-2.15] pr_labeler: stop adding needs_triage labels to new PRs #1529
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: Ansible Docsite CI | |
on: | |
push: | |
branches-ignore: | |
- 'patchback/**' | |
- 'pip-compile/**' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
docs_sanity_docs_build: | |
name: docs-build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Docsite | |
uses: actions/checkout@v4 | |
- name: Install Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install Test Requirements | |
run: | | |
python -m pip install -r tests/requirements.txt | |
- name: Graft ansible-core | |
run: | | |
python docs/bin/clone-core.py | |
- name: Run docs-build Sanity | |
run: | | |
python tests/sanity.py docs-build | |
docs_sanity_rstcheck: | |
name: rstcheck | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Docsite | |
uses: actions/checkout@v4 | |
- name: Install Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install Test Requirements | |
run: | | |
python -m pip install -r tests/requirements.txt | |
- name: Graft ansible-core | |
run: | | |
python docs/bin/clone-core.py | |
- name: Run rstcheck Sanity | |
run: | | |
python tests/sanity.py rstcheck | |
nox: | |
uses: ./.github/workflows/reusable-nox.yml |