Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 895 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 895 Bytes

Skills Response Templates

A collection of responses for use in Skills courses.

Template Collections

  • /readme/* - templates intended for updating a course's root readme file.
  • /step-feedback/* - templates for sharing step progress, grading pass/fail, and congratulations. Typically used for issue comments.

Template Variables

Several templates contain mustache style variables. They are intended for use with the skills/action-text-variables GitHub Action, which supports full mustache templating.

Example

hello.md

Hello {{ login }}, nice to meet you!

json input

{
  "login": "${{ github.actor }}"
}

Tip

See mustache syntax for all capabilities like iteration and if/then logic.