From 43beaa118c24cef73c8449f62e81216f32e00525 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Wed, 12 Jun 2024 07:12:44 -0700 Subject: [PATCH] remove unused readthedocs workflow --- .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