KIKIMR-22202 Changes in PR template and docs for contributors with requirements to PR description #4092
Workflow file for this run
This file contains 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
name: Build documentation | |
on: | |
pull_request_target: | |
paths: | |
- 'ydb/docs/**' | |
jobs: | |
build-docs: | |
concurrency: | |
group: docs-build-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Build | |
uses: diplodoc-platform/docs-build-action@v3 | |
with: | |
revision: "pr-${{ github.event.pull_request.number }}-${{ github.event.pull_request.head.sha }}" | |
src-root: "./ydb/docs" |