ci(build.yaml): add a guard step to skip builds for PRs targeting master or dev branches
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 17s

This commit is contained in:
2025-08-27 18:47:58 +02:00
parent 27c7d0578b
commit 1b14af3079

View File

@@ -4,6 +4,9 @@ on: pull_request
jobs:
build:
# Skip if PR base is master/dev
if: github.base_ref != 'master' && github.base_ref != 'dev'
runs-on: ubuntu-latest
steps: