From cb97ecda84fc495c35866602e00be7496c746f73 Mon Sep 17 00:00:00 2001 From: David Stone Date: Wed, 25 Mar 2026 20:28:47 -0600 Subject: [PATCH] chore: remove trigger-docs.yml (replaced by scheduled rebuild) The docs repo now rebuilds on an hourly schedule, so addon repos no longer need to trigger it on push. This eliminates the need for DOCS_DISPATCH_TOKEN as a secret in every addon repo. See: Ultimate-Multisite/docs#1 --- .github/workflows/trigger-docs.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/trigger-docs.yml diff --git a/.github/workflows/trigger-docs.yml b/.github/workflows/trigger-docs.yml deleted file mode 100644 index 1a68758..0000000 --- a/.github/workflows/trigger-docs.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Trigger Docs Rebuild - -on: - push: - branches: [main] - paths: - - '**.php' - - 'readme.txt' - -jobs: - trigger: - runs-on: ubuntu-latest - steps: - - name: Trigger docs rebuild - run: | - gh workflow run deploy-docs.yml --repo Ultimate-Multisite/docs - env: - GH_TOKEN: ${{ secrets.DOCS_DISPATCH_TOKEN }} -