ci: validate main pushes automatically
Validators (Pull Requests Only) / validate-core (push) Failing after 8s
Validators (Pull Requests Only) / validate-ui-and-storage (push) Has been skipped

This commit is contained in:
2026-07-12 11:03:52 +09:00
parent e7d1069222
commit 42d45e85fb
4 changed files with 92 additions and 1 deletions
+3 -1
View File
@@ -3,6 +3,8 @@ name: Validators (Pull Requests Only)
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch:
# Phase 3: Validator pipeline
@@ -220,7 +222,7 @@ jobs:
validate-ui-and-storage:
runs-on: ubuntu-latest
needs: validate-core
if: github.event_name != 'push'
if: needs.validate-core.result == 'success'
steps:
- name: Checkout Code