From f4efa4001d2f4d1af79f58ea9abeac7f92acdf1c Mon Sep 17 00:00:00 2001 From: Luciano Giacchetta Date: Wed, 18 Mar 2026 09:48:01 -0300 Subject: [PATCH] feat: add new workflow to trigger docs update --- .github/workflows/trigger.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/trigger.yml diff --git a/.github/workflows/trigger.yml b/.github/workflows/trigger.yml new file mode 100644 index 0000000..70768e5 --- /dev/null +++ b/.github/workflows/trigger.yml @@ -0,0 +1,17 @@ +name: Calling Docusaurus + +on: + push: + branches: + - main + +jobs: + dispatch: + runs-on: ubuntu-latest + steps: + - name: Repository Dispatch + uses: peter-evans/repository-dispatch@v4 + with: + token: ${{ secrets.PUBLIC_REPOSITORY_DISPATCH }} + repository: gianet-us/www_gianet_us + event-type: trigger-docs-update \ No newline at end of file