# Template: PR to develop validation# Copy to: .github/workflows/pr-develop.yml## Triggers on pull requests targeting develop branch# Runs: commit-lint + build (image + nginx -t) + smoke test (/__health)
name: PR Validation
on: pull_request: branches: - develop
jobs: validate: uses: <org>/ci-templates/.github/workflows/nginx-main-pipeline.yml@main with: run_commit_lint: true run_build: true run_test: true secrets: inherit NGINX· Consumer template ·on: pull_request
Nginx Pr Develop
Template: PR to develop validation Copy to: .github/workflows/pr-develop.yml Triggers on pull requests targeting develop branch Runs: commit-lint + build (image + nginx -t) + smoke test (/__health)
templates/nginx-pr-develop.yml