Enable previewing generated doc in PR #2
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
# Preview the generated doc in pull requests. | |
name: Preview Generated Docs | |
on: | |
pull_request: | |
branches: ["master"] | |
permissions: | |
pull-requests: write | |
jobs: | |
documentation-links: | |
name: Preview Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: readthedocs/actions/preview@v1 | |
with: | |
project-slug: "editorconfig-specification" |