diff --git a/.github/workflows/automatic-doc-checks.yml b/.github/workflows/automatic-doc-checks.yml new file mode 100644 index 0000000000..cd9b178e69 --- /dev/null +++ b/.github/workflows/automatic-doc-checks.yml @@ -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'