Skip to content

Avoid readthedocs action for a [skip ci] commit message #11

Avoid readthedocs action for a [skip ci] commit message

Avoid readthedocs action for a [skip ci] commit message #11

Workflow file for this run

# .github/workflows/documentation-links.yml
name: readthedocs/actions
on:
pull_request_target:
types:
- opened
# Execute this action only on PRs that touch
# documentation files.
# paths:
# - "doc/**"
permissions:
pull-requests: write
jobs:
documentation-links:
runs-on: ubuntu-latest
steps:
- uses: readthedocs/actions/preview@v1
if: |
!contains(format('{0} {1} {2}', github.event.head_commit.message, github.event.pull_request.title, github.event.pull_request.body), '[skip ci]')
with:
project-slug: "xarray-ms"