Skip to content

HTP updates Hubs Privacy Notice and Terms of Use - HTP_October26 #289

HTP updates Hubs Privacy Notice and Terms of Use - HTP_October26

HTP updates Hubs Privacy Notice and Terms of Use - HTP_October26 #289

Workflow file for this run

name: Docs Linter
on:
push:
branches:
- main
paths:
- '**.md'
- '**.json'
- '.github/workflows/doc_linter.yml'
# Ignore Markdown files in the root
- '!*.md'
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
fetch:
name: Lint documents
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up Python 3
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Python dependencies
run: |
pip install -r .github/requirements.txt
- name: Run linter
run: |
python .github/scripts/lint_documents.py --path . --ref en --exceptions .github/scripts/linter_exceptions.json