From b01171b4e6939c06e45b2868176bdfa3522bd8e9 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Wed, 12 Jun 2024 10:29:20 -0500 Subject: [PATCH] remove unused readthedocs workflow (#1046) #721 added a GitHub Actions workflow that runs whenever changes are pushed to `branch-0.20`, as a workaround for some readthedocs failures. There hasn't been a push to `branch-0.20` in 3 years (https://github.com/rapidsai/ucx-py/tree/branch-0.20) and readthedocs builds have been working well: * builds: https://readthedocs.org/projects/ucx-py/builds/ * docs: https://ucx-py.readthedocs.io/en/latest/ So I believe this workflow is no longer necessary. This proposes removing it. Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Peter Andreas Entschev (https://github.com/pentschev) - Bradley Dice (https://github.com/bdice) URL: https://github.com/rapidsai/ucx-py/pull/1046 --- .github/workflows/rtd.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/rtd.yml diff --git a/.github/workflows/rtd.yml b/.github/workflows/rtd.yml deleted file mode 100644 index e3caa0a46..000000000 --- a/.github/workflows/rtd.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Update readthedocs branch - -on: - push: - branches: ["branch-0.20"] - -jobs: - update: - name: Update readthedocs branch - runs-on: "ubuntu-latest" - steps: - - name: Checkout readthedocs - uses: actions/checkout@v2.3.4 - with: - ref: readthedocs - fetch-depth: 0 - - name: Merge upstream changes - run: | - git config user.name "GitHub Actions" - git config user.email "action@github.com" - git fetch origin - git merge origin/branch-0.20 - git push