# Template: Build on feature/bugfix branches# Copy to: .github/workflows/feature-build.yml## Triggers on every push to feature/* or bugfix/* branches# Runs: image build + nginx -t (fast feedback)
name: Feature/Bugfix Build
on: push: branches: - 'feature/**' - 'bugfix/**'
jobs: build: uses: <org>/ci-templates/.github/workflows/nginx-main-pipeline.yml@main with: run_build: true secrets: inherit NGINX· Consumer template ·on: push
Nginx 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: image build + nginx -t (fast feedback)
templates/nginx-feature-build.yml