Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions markdown-templates/step-feedback/step-results-table.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{{#passed}}

## Step {{ step_number }} - Passed ✅

{{/passed}}
{{^passed}}

## Step {{ step_number }} - Fail ❌

{{/passed}}

{{#passed}}
<img src="https://octodex.github.com/images/inflatocat.png" align="right" height="200px" alt="Inflatocat image indicating the step passed" />
{{/passed}}
{{^passed}}
<img src="https://octodex.github.com/images/spidertocat.png" align="right" height="100px" alt="Spidertocat image indicating the step failed" />
Some checks failed. Please review the results below and try again.

Time to find the bug! 🤔
{{/passed}}

| Status | Name |
| --- | --- |
{{#results_table}}
| {{#passed}}✅ - Pass{{/passed}}{{^passed}}❌ - Fail{{/passed}} | {{ name }} |
{{/results_table}}

{{#tips.length}}

### Tips

{{#tips}}

- {{.}}
{{/tips}}
{{/tips.length}}