docs: use new logo #1
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
# This workflow adds a link to the experimental documentation build to the PR. | |
# This does NOT trigger a build of the documentation, this is handled through webhooks. | |
name: Read the Docs PR Preview | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
# Execute this action only on PRs that touch | |
# documentation files. | |
paths: | |
- "docs/**" | |
permissions: | |
pull-requests: write | |
jobs: | |
documentation-links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: readthedocs/actions/preview@v1 | |
with: | |
project-slug: "anemoi-transform" |