[DOCS] Add new documentation checks to align with other OEP repositories #14
Workflow file for this run
This file contains hidden or 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
| --- | |
| # SPDX-FileCopyrightText: (C) 2025 Intel Corporation | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Documentation Check | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| filter: | |
| permissions: | |
| contents: read # needed for actions/checkout | |
| runs-on: ubuntu-latest | |
| outputs: | |
| dlstreamer_documentation_changed: ${{ steps.filter.outputs.dlstreamer_documentation }} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Set paths filter | |
| id: filter | |
| uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d #4.01 | |
| with: | |
| filters: | | |
| dlstreamer_documentation: | |
| - 'docs/user-guide/**' | |
| build-dlstreamer-documentation: | |
| permissions: | |
| contents: read # needed for actions/checkout | |
| needs: filter | |
| if: ${{ needs.filter.outputs.dlstreamer_documentation_changed == 'true' }} | |
| uses: ./.github/workflows/docs-reusable-workflow.yaml | |
| with: | |
| docs_directory: . |