From 2f8ee9c241fa91a23ac2fa5137b8948a815f3848 Mon Sep 17 00:00:00 2001 From: Vick Top Date: Tue, 13 Feb 2024 09:36:11 +0100 Subject: [PATCH] chore: remove old documentation workflow --- .github/workflows/documentation.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/documentation.yml diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml deleted file mode 100644 index c0f9e57..0000000 --- a/.github/workflows/documentation.yml +++ /dev/null @@ -1,23 +0,0 @@ -# .github/workflows/trigger-docs-update.yml -name: Trigger Documentation Update - -on: - release: - workflow_dispatch: - - -jobs: - trigger-doc-update: - runs-on: ubuntu-latest - steps: - - name: Trigger documentation workflow - env: - DOC_PAT: ${{ secrets.DOC_PAT }} - run: | - REPO_URL="https://github.com/${{ github.repository }}" - curl \ - -X POST \ - -H "Accept: application/vnd.github.v3+json" \ - -H "Authorization: token $DOC_PAT" \ - "https://api.github.com/repos/Iconica-Development/iconica_component_documentation/actions/workflows/documentation.yml/dispatches" \ - -d "{\"ref\":\"master\",\"inputs\":{\"repository_url\":\"$REPO_URL\"}}"