-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Expand file tree
/
Copy pathapproval-gates-config.template.yml
More file actions
42 lines (35 loc) · 1.02 KB
/
approval-gates-config.template.yml
File metadata and controls
42 lines (35 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Approval Gates Configuration
# Copy this file to .specify/extensions/approval-gates/approval-gates-config.yml
# Then customize for your team's approval workflow
# Define approval requirements for each phase
# Each phase can be enabled/disabled independently
specify:
enabled: true
requires: [product_lead, architect]
min_approvals: 1
description: "Functional specification approval"
plan:
enabled: true
requires: [architect, tech_lead]
min_approvals: 2
description: "Technical specification and architecture approval"
tasks:
enabled: true
requires: [tech_lead]
min_approvals: 1
description: "Task breakdown and planning approval"
implement:
enabled: false
requires: [tech_lead]
min_approvals: 1
description: "Implementation gate (optional)"
constitution:
enabled: false
requires: [owner]
min_approvals: 1
description: "Project constitution approval"
# Future: GitHub Actions integration for automated checks
github_actions:
enabled: false
# repository: "your-org/your-repo"
# branch: "main"