From b824b50c200362ff03dc05254c3a32451c6eab91 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Thu, 17 Jul 2025 04:17:14 +0200 Subject: [PATCH] GH Actions/publish-wiki: update path selection I forgot to update the path selection in the `publish-wiki` workflow in PR 20, but this workflow should definitely also do a PR dry-run/push deploy if the automation to update the output example blocks changes. --- .github/workflows/publish-wiki.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-wiki.yml b/.github/workflows/publish-wiki.yml index 27d15c8..e5e60f9 100644 --- a/.github/workflows/publish-wiki.yml +++ b/.github/workflows/publish-wiki.yml @@ -4,13 +4,17 @@ on: branches: - 'main' paths: - - wiki/** - .github/workflows/publish-wiki.yml + - build/wiki-code-samples/** + - build/wiki-command-replacer.sh + - wiki/** # Do a dry-run (check, no deploy) for PRs. pull_request: paths: - - wiki/** - .github/workflows/publish-wiki.yml + - build/wiki-code-samples/** + - build/wiki-command-replacer.sh + - wiki/** # Allow running this workflow manually from the Actions tab. workflow_dispatch: # Allow this workflow to be triggered from outside.