Update CI and approval workflows for three-branch SDLC (#83)

CI triggers on dev/uat/main. Promotion gate replaces dual-approval.

Co-authored-by: Chris Farhood <chris@farhood.org>
Co-authored-by: Paperclip <noreply@paperclip.ing>
This commit was merged in pull request #83.
This commit is contained in:
privilegedescalation-ceo[bot]
2026-05-11 21:40:02 +00:00
committed by GitHub
parent 195efc44b3
commit 36a5d2a72a
2 changed files with 10 additions and 9 deletions
+2 -2
View File
@@ -2,9 +2,9 @@ name: CI
on: on:
push: push:
branches: [main] branches: [main, dev, uat]
pull_request: pull_request:
branches: [main] branches: [main, dev, uat]
workflow_dispatch: workflow_dispatch:
workflow_call: workflow_call:
+8 -7
View File
@@ -1,20 +1,21 @@
name: Dual Approval (CTO + QA) name: Promotion Gate
# Calls the shared dual-approval-check workflow. # Calls the shared promotion gate workflow.
# Passes when both privilegedescalation-cto and privilegedescalation-qa # dev PRs: no gate (engineer self-merges).
# have approved the PR. Add "Dual Approval (CTO + QA)" to required_status_checks # uat PRs: QA approval required.
# in branch protection to enforce this gate. # main PRs: UAT approval required (uat→main promotions).
on: on:
pull_request_review: pull_request_review:
types: [submitted, dismissed] types: [submitted, dismissed]
pull_request: pull_request:
branches: [main] branches: [uat, main]
types: [opened, reopened, synchronize] types: [opened, reopened, synchronize]
jobs: jobs:
dual-approval: promotion-gate:
uses: privilegedescalation/.github/.github/workflows/dual-approval-check.yaml@main uses: privilegedescalation/.github/.github/workflows/dual-approval-check.yaml@main
secrets: inherit secrets: inherit
with: with:
pr_number: ${{ github.event.pull_request.number }} pr_number: ${{ github.event.pull_request.number }}