Merge pull request #3514 from dgageot/rename-board-editor-env-var #96
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
| # Validates that changes under docs/** still build on docs.docker.com, | |
| # which mounts this repo's docs as a Hugo module pinned to a release | |
| # tag (docker/docs go.mod + hugo.yaml module.imports). The reusable | |
| # workflow builds docker/docs with the module replaced by this commit | |
| # and runs htmltest on the output, so docs PRs that would break | |
| # docs.docker.com fail here before merging. | |
| # | |
| # The check is a no-op until docker/docs imports the | |
| # github.com/docker/docker-agent module (issue #3371, Phase 2.1). | |
| name: docs-upstream | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/docs-upstream.yml" | |
| - "docs/**" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/docs-upstream.yml" | |
| - "docs/**" | |
| jobs: | |
| validate-upstream: | |
| uses: docker/docs/.github/workflows/validate-upstream.yml@9955a341f1720b8923172e2b099f71d75c3e8570 # main | |
| with: | |
| module-name: docker/docker-agent |