fix(BA-6062): Wrap legacy string based start_command via shell -c instead of shlex.split
#37245
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
| name: docs-preview | |
| on: | |
| pull_request: | |
| types: [opened, reopened, labeled, unlabeled, synchronize] | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| docs-preview-links-: | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'area:docs') && !contains(fromJSON('["flow:merge-queue", "flow:hotfix"]'), github.event.label.name) && github.event.pull_request.merged == false }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Make a link to the doc preview build (en) | |
| uses: readthedocs/actions/preview@v1 | |
| with: | |
| project-slug: "sorna" | |
| - name: Make a link to the doc preview build (ko) | |
| uses: readthedocs/actions/preview@v1 | |
| with: | |
| project-slug: "sorna-ko" | |
| project-language: "ko" |