Skip to content

Commit

Permalink
Add docs checks to GH workflows:
Browse files Browse the repository at this point in the history
  * spellcheck
  * linkcheck
  * inclusive-language check
  • Loading branch information
rkratky committed Oct 19, 2023
1 parent d2637da commit 6e1c0a3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/automatic-doc-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Main Documentation Checks

on:
pull_request:
paths:
- 'docs/**'

on:
push:
paths:
- 'docs/**'

on:
workflow_dispatch:
paths:
- 'docs/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
documentation-checks:
uses: canonical/documentation-workflows/.github/workflows/documentation-checks.yaml@main
with:
working-directory: 'doc'

0 comments on commit 6e1c0a3

Please sign in to comment.