gh-actions-build-trigger
Installation
SKILL.md
GH Actions build trigger
When a repo has several workflows (e.g. an APK workflow and an AAB workflow), they do not behave the same. Know each one's auto-trigger and paths filter before pushing:
| Workflow | Auto-trigger on push | Paths filter |
|---|---|---|
build-apk.yml (test APK) |
✅ every push to main |
often none |
build-aab.yml (store AAB) |
✅ push to main |
often only app source paths (app/, components/, db/, hooks/, lib/, plugins/, types/, assets/, app.json, package*.json, patches/) — NOT .github/** |
Check the actual paths: / paths-ignore: in each workflow file — don't
assume.