Skip to content

Commit

Permalink
Update validate-recipes.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bberkeyU authored Mar 19, 2024
1 parent 1aa6d2c commit f93933a
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/validate-recipes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
runTime = 0
color = "black"
emoji = None
if "_FW" not in scriptname and "setup" not in scriptname and "cbk" not in scriptname and "menu" not in scriptname:
if state['shut'] == "in":
color = "red"
Expand All @@ -60,14 +60,18 @@ jobs:
#print(state)
color = "green"
if color == "red":
md.write("📙 ")
#md.write("📙 ")
emoji = "📙 "
if color == "black":
md.write("📕 ")
# md.write("📕 ")
emoji = "📕 "
if color == "blue":
md.write("📘 ")
#md.write("📘 ")
emoji = "📘 "
if color == "green":
md.write("📗 ")
md.write(f"<details><summary>{scriptname}</summary><blockquote><pre>")
#md.write("&#x1F4D7; ")
emoji = "&#x1F47; "
md.write(f"<details><summary>{emoji}{scriptname}</summary><blockquote><pre>")
tab = tab +1
for child in results2:
filename =child.split('#')[0].strip()
Expand Down

0 comments on commit f93933a

Please sign in to comment.