Skip to content

Commit

Permalink
include category in build failure yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
daler committed Dec 4, 2023
1 parent a6212fc commit 56058dd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bioconda_utils/build_failure.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ def write(self):
i += 1
if self.reason:
commented_map.insert(i, "reason", LiteralScalarString(self.reason))
i += 1
if self.category:
commented_map.insert(i, "category", LiteralScalarString(self.category))
i += 1
yaml.dump(commented_map, f)

def remove(self):
Expand Down

0 comments on commit 56058dd

Please sign in to comment.