From 2ea3acda98a757c0531cf81c3cded4f773f0ce6c Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Mon, 24 Mar 2025 14:47:33 +1100 Subject: [PATCH] updated automations --- .github/workflows/main.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fce10c9..fb15de0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,16 +2,12 @@ name: Build Documentation Index on: push: - paths: - - 'docs/**' branches: - - main - repository_dispatch: - types: [build_docs] - + - master jobs: build: runs-on: ubuntu-latest + if: github.actor != 'github-actions[bot]' permissions: contents: write steps: @@ -22,6 +18,9 @@ jobs: with: node-version: '18' + - name: Install dependencies + run: npm install + - name: Build docs run: node build-docs.js