2023-04-24 19:08:53 +00:00
|
|
|
#### DCIP Type / Category ####
|
2023-04-05 16:02:54 +00:00
|
|
|
|
|
|
|
# Type
|
|
|
|
t-informational: this?.new?.type == "Informational" && this?.old?.status != "Living"
|
|
|
|
t-meta: this?.new?.type == "Meta" && this?.old?.status != "Living"
|
|
|
|
|
|
|
|
# Categories
|
|
|
|
t-core: this?.new?.category == "Core" && this?.old?.status != "Living"
|
|
|
|
t-networking: this?.new?.category == "Networking" && this?.old?.status != "Living"
|
|
|
|
t-interface: this?.new?.category == "Interface" && this?.old?.status != "Living"
|
|
|
|
|
2023-04-24 19:08:53 +00:00
|
|
|
# Living DCIPs & DCIP Template
|
|
|
|
t-process: this?.old?.status == "Living" || this?.old?.title == "<The DCIP title is a few words, not a complete sentence>"
|
2023-04-05 16:02:54 +00:00
|
|
|
|
|
|
|
# Status
|
|
|
|
s-draft: this?.new?.status == "Draft"
|
|
|
|
s-final: this?.new?.status == "Final"
|
|
|
|
s-lastcall: this?.new?.status == "Lastcall"
|
|
|
|
s-review: this?.new?.status == "Review"
|
|
|
|
s-stagnant: this?.new?.status == "Stagnant"
|
|
|
|
s-withdrawn: this?.new?.status == "Withdrawn"
|
|
|
|
|
|
|
|
#### PR Classification ####
|
|
|
|
|
|
|
|
c-new: this?.new?.status && !this?.old?.status
|
|
|
|
c-update: this?.new?.status && this?.old?.status && this?.new?.status == this?.old?.status
|
|
|
|
c-status: this?.new?.status && this?.old?.status && this?.new?.status != this?.old?.status
|