feat: more specific condition for push event

This commit is contained in:
2026-03-15 15:30:50 -05:00
parent 3daa236d8c
commit e1e54e567d

View File

@@ -34,7 +34,7 @@ jobs:
if: >-
github.event_name == 'schedule' ||
github.event_name == 'workflow_dispatch' ||
(github.event_name == 'push' && github.actor != 'renovate-bot') ||
(github.event_name == 'push' && github.actor != 'renovate-bot' && !startsWith(github.event.head_commit.message, 'Merge pull request')) ||
(github.event_name == 'pull_request' && github.event.pull_request.merged == true)
steps:
- name: Checkout Main