Skip to content

Commit b2312a6

Browse files
author
Jamal Anderson
committed
update to processes
1 parent ce3cc7b commit b2312a6

File tree

7 files changed

+4
-18
lines changed

7 files changed

+4
-18
lines changed

Diff for: README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ The following labels are not states, per se, but help to communicate information
3030
Label | Description
3131
---|----
3232
![](img-labels/blocked.png) | The person assigned to the issue cannot progress because they are awaiting information or action from someone else
33-
![](img-labels/bug.png) | The issue is a programmatic error (bug) in the code
33+
![](img-labels/bug-dev.png) | The issue is a programmatic error (bug) in the code found during development
34+
![](img-labels/bug-prod.png) | The issue is a programmatic error (bug) in the code found in production
3435
![](img-labels/help-wanted.png) | The person assigned is requesting assistance on the task
3536
![](img-labels/requirement.png) | The issue is a formal/written requirement
3637
![](img-labels/test-failed.png) | The issue was Feature Tested, but was set to failed by the person testing it

Diff for: img-labels/.DS_Store

0 Bytes
Binary file not shown.

Diff for: img-labels/bug-dev.png

2.68 KB
Loading

Diff for: img-labels/bug-prod.png

2.78 KB
Loading

Diff for: img-labels/bug.png

-5.23 KB
Binary file not shown.

Diff for: set-github-issues.sh

-16
This file was deleted.

Diff for: set-github-labels.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ curl -u $TOKEN:x-oauth-basic --include --request POST --data '{"name":"Feature T
3131
curl -u $TOKEN:x-oauth-basic --include --request POST --data '{"name":"Integration Testing","color":"0e8a16"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels"
3232

3333
#create helper labels
34-
curl -u $TOKEN:x-oauth-basic --include --request POST --data '{"name":"Bug","color":"d93f0b"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels"
34+
curl -u $TOKEN:x-oauth-basic --include --request POST --data '{"name":"Bug: Dev","color":"d93f0b"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels"
35+
curl -u $TOKEN:x-oauth-basic --include --request POST --data '{"name":"Bug: Prod","color":"d93f0b"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels"
3536
curl -u $TOKEN:x-oauth-basic --include --request POST --data '{"name":"Blocked","color":"b60205"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels"
3637
curl -u $TOKEN:x-oauth-basic --include --request POST --data '{"name":"Test Failed","color":"b60205"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels"
3738
curl -u $TOKEN:x-oauth-basic --include --request POST --data '{"name":"Track Time","color":"5319e7"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels"

0 commit comments

Comments
 (0)