-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #226 from pjpires/yaml-failsafe-schema
Load yaml files using the failsafe schema option
- Loading branch information
Showing
5 changed files
with
53 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
## parses colors declared as integer values - different color, update | ||
- # bot | ||
name: ":robot: bot" | ||
color: 123456 | ||
description: "" | ||
## parses colors declared as regular text, no hexcode - same color, skip | ||
- # enhancement | ||
name: ":sparkles: enhancement" | ||
color: 0054ca | ||
description: "" | ||
## parses colors declared as string hex codes - same color, skip | ||
- # bug | ||
name: ":bug: bug" | ||
color: "#b60205" | ||
description: "" | ||
# parses regular text for the name field - new label, create | ||
- # new label | ||
name: This is a new label | ||
color: "#0e8a16" | ||
description: "" | ||
# parses regular text for the description field - existing label, update | ||
- # upstream | ||
name: ":eyes: upstream" | ||
color: "fbca04" | ||
description: This is a new description | ||
# parses text for the from_name field - existing label, rename | ||
- # question | ||
name: ":question: :question: question" | ||
color: "3f51b5" | ||
description: "" | ||
from_name: ":question: question" |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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