From a9f676b215e796c5f84fe29b6f7303564275a16b Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Mon, 22 Jun 2026 17:03:26 -0700 Subject: [PATCH] Remove RTD PR preview build workflow We now use the [RTD GitHub app](https://docs.readthedocs.com/platform/stable/reference/git-integration.html#github-app), making the removed file redundant to pull request preview builds. Additionally, the call to the old GitHub Action was deprecated on 2025-07-01, per https://github.com/readthedocs/actions/blob/main/README.md. --- .github/workflows/rtd-pr-preview.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/rtd-pr-preview.yml diff --git a/.github/workflows/rtd-pr-preview.yml b/.github/workflows/rtd-pr-preview.yml deleted file mode 100644 index bf7bd5aef9..0000000000 --- a/.github/workflows/rtd-pr-preview.yml +++ /dev/null @@ -1,22 +0,0 @@ -# .github/workflows/rtd-pr-preview.yml -name: readthedocs/actions -on: - pull_request_target: - types: - - opened - # 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: "plone6" - single-version: "true"