wcaservices/Markdown Summary Template
Add custom step summaries to your workflows with ease. No more 200 lines of "echo ... >> $GITHUB_STEP_SUMMARY"
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| template | Your markdown template. Write as if it was normal markdown. For JetBrains users, add `# language="markdown"` to the line above to get nice syntax highlighting. | yes | — |
| step-output-only | Whether to only emit the template to GitHub step output instead of adding it directly to the step summary Useful if you want to feed the template into some other workflow step. | — | false |
| variables | A list of environment variables to inject into your markdown template. For example; ... variables: >- FOO="bar" SOMEONE="world" template: | # Hello, $SOMEONE This is $FOO | no | — |
Outputs
| name | description |
|---|---|
| parsed | Parsed output of your template. Useful if you want to feed the template into some other workflow step. |
| input | Your raw template before it was parsed. |
| variables | The input variables you provided to build the template. Handy if you need to re-use them somewhere else. |