# Template: Build on feature/bugfix branches# Copy to: .github/workflows/feature-build.yml## Triggers on every push to feature/* or bugfix/* branches# Runs: build only (fast feedback)
name: Feature/Bugfix Build
on: push: branches: - 'feature/**' - 'bugfix/**'
jobs: build: uses: <org>/ci-templates/.github/workflows/react-main-pipeline.yml@main with: run_build: true secrets: inherit React· Consumer template ·on: push
React Feature Build
Template: Build on feature/bugfix branches Copy to: .github/workflows/feature-build.yml Triggers on every push to feature/* or bugfix/* branches Runs: build only (fast feedback)
templates/react-feature-build.yml