forked from Ma11hewThomas/github-markdown-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
37 lines (33 loc) · 977 Bytes
/
action.yml
File metadata and controls
37 lines (33 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: 'markdown-builder'
description:
'A GitHub Action to build markdown summaries for GitHub Actions and pull
requests using Handlebars templates.'
author: 'Ma11hewThomas'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'file'
color: 'blue'
# Define your inputs here.
inputs:
template-file-path:
description: 'Path to the Handlebars template file to use.'
required: true
json-file-path:
description: 'Path to the optional JSON file for template data.'
required: false
summary:
description: 'Post markdown to GitHub Action summary'
default: true
require: false
pull-request:
description: 'Comment markdown on Pull Request'
default: false
require: false
# Define your outputs here, if necessary.
outputs:
summary:
description: 'The generated markdown summary.'
# Specify the environment and entry point for the action.
runs:
using: 'node20'
main: dist/index.js