mirror of
https://github.com/ansible/ansible-documentation.git
synced 2026-03-27 13:28:51 +07:00
* Add yamllint check for RST code listings. * Address review comments. * Sort languages and remove no longer needed duplicates. * Enable warnings, but disable all failing rules. * Improve formulation. Co-authored-by: Don Naro <dnaro@redhat.com> * Show allowed languages when no or invalid language is supplied. Improve line lengths. * Make sure that 'yamllint .' passes. * Fix indentation issues introduced in #2095. --------- Co-authored-by: Don Naro <dnaro@redhat.com>
31 lines
501 B
YAML
31 lines
501 B
YAML
name: Ansible Docsite CI
|
|
|
|
"on":
|
|
schedule:
|
|
# Daily
|
|
- cron: "23 7 * * *"
|
|
push:
|
|
branches-ignore:
|
|
- 'patchback/**'
|
|
- 'pip-compile/**'
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
nox:
|
|
uses: ./.github/workflows/reusable-nox.yml
|
|
|
|
check:
|
|
if: always()
|
|
|
|
needs:
|
|
- nox
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Decide whether the needed jobs succeeded or failed
|
|
uses: re-actors/alls-green@release/v1
|
|
with:
|
|
jobs: ${{ toJSON(needs) }}
|