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 7778420 commit f44d18f
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions .github/workflows/validate-recipes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,23 @@ jobs:
color = "black"
md.write("read_Script write")
if state['shut'] == "in":
color = "red"
if state['shut'] == "out" and state['calib'] =='out' and state['diffuser'] == "in":
color = "blue"
if state['shut'] == "out" and state['calib'] =='out' and state['diffuser'] == "out":
#print(state)
color = "green"
if color == "red":
md.write("📙 ")
if color == "black":
md.write("📕 ")
if color == "blue":
md.write("📘 ")
if color == "green":
md.write("📗 ")
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"
if state['shut'] == "out" and state['calib'] =='out' and state['diffuser'] == "in":
color = "blue"
if state['shut'] == "out" and state['calib'] =='out' and state['diffuser'] == "out":
#print(state)
color = "green"
if color == "red":
md.write("📙 ")
if color == "black":
md.write("📕 ")
if color == "blue":
md.write("📘 ")
if color == "green":
md.write("📗 ")
md.write(f"<details><summary>{scriptname}</summary><blockquote><pre>")
tab = tab +1
for child in results2:
Expand Down

0 comments on commit f44d18f

Please sign in to comment.