Fix MOTD for extra data #1967
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: Document Linter | |
on: | |
pull_request: | |
branches: | |
- main | |
- current-release | |
- "*LTS" | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
docsLinter: | |
if: github.event.pull_request.draft == false | |
name: Lint Documentation | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
config: | |
- {python-version: "3.10", tox-env: "docs"} | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run Document Linter | |
uses: harshanarayana/custom-actions@main | |
with: | |
python-version: ${{ matrix.config.python-version }} | |
test-infra-tool: tox | |
test-infra-version: latest | |
action: tests | |
test-additional-args: "-e=${{ matrix.config.tox-env }}" |