-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (27 loc) · 788 Bytes
/
action.yml
File metadata and controls
31 lines (27 loc) · 788 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
name: IssueOps Form Parser
description: Convert issue form responses to JSON
author: Nick Alteen
branding:
icon: check-square
color: blue
inputs:
body:
description:
The issue body to parse. Defaults to the body from the workflow event.
required: true
default: ${{ github.event.issue.body }}
issue-form-template:
description: The issue form template file name (e.g. `new-repository.yml`).
required: false
workspace:
default: ${{ github.workspace }}
description:
The path where the repository has been cloned using the `actions/checkout`
step. This is required to find the issue form template file.
required: true
outputs:
json:
description: The parsed issue as a JSON string
runs:
using: node24
main: dist/index.js