We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Status: Waiting feedback
1 parent fcfc6e5 commit a63bb80Copy full SHA for a63bb80
src/Api/Status/GitHubStatusApi.php
@@ -13,6 +13,7 @@ class GitHubStatusApi implements StatusApi
13
Status::NEEDS_WORK => 'Status: Needs Work',
14
Status::WORKS_FOR_ME => 'Status: Works for me',
15
Status::REVIEWED => 'Status: Reviewed',
16
+ Status::WAITING_FEEDBACK => 'Status: Waiting feedback',
17
];
18
19
private array $labelToStatus;
src/Api/Status/Status.php
@@ -13,4 +13,5 @@ final class Status
public const string NEEDS_WORK = 'needs_work';
public const string WORKS_FOR_ME = 'works_for_me';
public const string REVIEWED = 'reviewed';
+ public const string WAITING_FEEDBACK = 'waiting_feedback';
}
0 commit comments