-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaction.yml
More file actions
24 lines (24 loc) · 840 Bytes
/
action.yml
File metadata and controls
24 lines (24 loc) · 840 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: "Azure DevOps Work Item linker"
description: "This Github Action creates a Pull Request comment with a link to an Azure DevOps work item"
author: 'Solidify'
inputs:
GITHUB_TOKEN:
description: "Repository Github token"
required: true
organization: # id of input *
description: "Azure DevOps Organization name"
required: true
default: ""
projectName: # id of input *
description: "Azure DevOps Project name"
required: true
default: ""
outputs:
workItemLink: # id of output
description: "The link to the Azure Boards work item"
runs: #* Configures the path to the action's code and the application used to execute the code.
using: "node12" #* application used to execute the code
main: "dist/index.js" #* file that contains the action code
branding:
icon: external-link
color: black