From d6feb151382d9cb46c1947c7641d92971eb7ab14 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Mon, 22 Jun 2026 17:03:26 -0700 Subject: [PATCH 1/2] 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 b1be1f5f..00000000 --- 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: "ploneapi" - single-version: "true" From 43becf1cb6ad2371cef5f14a03a6123e4a590c01 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Mon, 22 Jun 2026 17:11:42 -0700 Subject: [PATCH 2/2] change log --- news/+remove-rtd-pr-preview.internal | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/+remove-rtd-pr-preview.internal diff --git a/news/+remove-rtd-pr-preview.internal b/news/+remove-rtd-pr-preview.internal new file mode 100644 index 00000000..c9eec6bd --- /dev/null +++ b/news/+remove-rtd-pr-preview.internal @@ -0,0 +1 @@ +Remove redundant and deprecated pull request preview build workflow. @stevepiercy