fix: prevent duplicate workflow runs on PR branches

- Remove wildcard '**' from push trigger
- Push events now only trigger on main/master/develop branches
- PR events still trigger on all PRs to main/master/develop
- Prevents double runs when pushing to PR branches
This commit is contained in:
2026-02-22 18:29:37 +00:00
parent 7b34ad150b
commit b2d363a0fc

View File

@@ -6,7 +6,6 @@ on:
- main - main
- master - master
- develop - develop
- '**'
pull_request: pull_request:
branches: branches:
- main - main