From 8ce500e475c83d6c765dd103a605db0b22f25077 Mon Sep 17 00:00:00 2001 From: Andrej Petras Date: Tue, 25 Jul 2023 15:54:27 +0200 Subject: [PATCH] chore(deps): add doc pipe --- .github/workflows/documentation.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/documentation.yml diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml new file mode 100644 index 0000000..1278d7b --- /dev/null +++ b/.github/workflows/documentation.yml @@ -0,0 +1,17 @@ +name: Update documentation +on: + push: + branches: [ main ] + paths: + - 'docs/**' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Trigger website update + uses: peter-evans/repository-dispatch@v1 + with: + token: ${{ secrets.CI_PAT }} + repository: onecx/docs + event-type: dispatch-build-website \ No newline at end of file