Skip to content

Commit

Permalink
Update update_metadata.py
Browse files Browse the repository at this point in the history
  • Loading branch information
GemmaTuron authored Nov 24, 2023
1 parent dce9f38 commit c370cd5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/scripts/update_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ def populate_metadata(self):
if self.metadata["Tag"] == []:
# split the tags into a list andremove any whitespace
# tags = [tag.strip() for tag in self.json_input["tag"].split(",")]
self.metadata["Tag"] = []
print(type(self.json_input["tag"]))
self.metadata["Tag"] = self.json_input["tag"]
if self.metadata["Status"] == "":
self.metadata["Status"] = "In progress"

Expand Down

0 comments on commit c370cd5

Please sign in to comment.