build(deps): bump osgeo/gdal from ubuntu-full-3.10.3 to ubuntu-full-3.11.4 in /docker #420
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
# This Workflow exists solely to push a link into | |
# PR descriptions to a preview build of the docs | |
# from the PRs source branch. | |
# | |
# It requires extra permissions, to write to the PR. | |
# | |
# It uses the unusual `pull_request_target` trigger, which | |
# only gives it access to the target of the PR, not the source. | |
# But this is a-okay because it doesn't even look at the source | |
# code, it just updates the PR description with a link. | |
name: Post RTD Preview Link to PRs | |
on: | |
pull_request_target: | |
types: | |
- opened | |
permissions: | |
pull-requests: write | |
# When a PR is updated, cancel the jobs from the previous version. Merges | |
# do not define head_ref, so use run_id to never cancel those jobs. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
documentation-preview: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: readthedocs/actions/preview@b8bba1484329bda1a3abe986df7ebc80a8950333 # v1.5 | |
with: | |
project-slug: "opendatacube" |