forked from ethereum/EIPs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use new label format (ethereum#5536)
* Revamp Labels * Update Waiting for CI Labels * Update Stale Labels
- Loading branch information
Showing
3 changed files
with
44 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
"type: Core": this?.new?.category == "Core" | ||
"type: Networking": this?.new?.category == "Networking" | ||
"type: Interface": this?.new?.category == "Interface" | ||
"type: ERC": this?.new?.category == "ERC" | ||
"type: Informational": this?.new?.type == "Informational" | ||
"type: Meta": this?.new?.type == "Meta" | ||
"type: EIP1 (Process)": this?.old?.status == "Living" || this?.old?.eip == "<to be assigned>" | ||
"waiting: EIP number": isNaN(this?.new?.eip) && this?.new?.eip | ||
"classification: new EIP": this?.new?.eip && !this?.old?.eip | ||
"classification: update EIP": this?.new?.eip && this?.old?.eip && this?.new?.status == this?.old?.status | ||
"classification: EIP status change": this?.new?.eip && this?.old?.eip && this?.new?.status != this?.old?.status | ||
#### EIP Type / Category #### | ||
|
||
# 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" | ||
t-erc": this?.new?.category == "ERC" && this?.old?.status != "Living" | ||
|
||
# Living EIPs & EIP Template | ||
t-process": this?.old?.status == "Living" || this?.old?.title == "<The EIP title is a few words, not a complete sentence>" | ||
|
||
#### PR Classification #### | ||
|
||
c-new: this?.new?.eip && !this?.old?.eip | ||
c-update: this?.new?.eip && this?.old?.eip && this?.new?.status == this?.old?.status | ||
c-status: this?.new?.eip && this?.old?.eip && this?.new?.status != this?.old?.status | ||
|
||
#### Waiting Labels ### | ||
|
||
# Generic | ||
|
||
# EIP Author | ||
|
||
# EIP Editor | ||
e-number: isNaN(this?.new?.eip) && this?.new?.eip |