-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
24 lines (24 loc) · 683 Bytes
/
action.yml
File metadata and controls
24 lines (24 loc) · 683 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
name: 'GitHub issue forms parser'
description: 'Parses a GitHub issue form body and outputs a JSON representation.'
branding:
icon: align-justify
color: blue
inputs:
template-filepath:
description: 'The filepath for the GitHub issue form template.'
required: true
issue-form-body:
description: 'The issue form body.'
required: true
outputs:
parsed-issue:
description: 'The parsed issue form as a JSON string.'
runs:
using: 'docker'
image: 'docker://ghcr.io/edumserrano/github-issue-forms-parser:v1'
args:
- parse-issue-form
- --template-filepath
- ${{ inputs.template-filepath }}
- --issue-body
- ${{ inputs.issue-form-body }}