-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
32 lines (32 loc) · 947 Bytes
/
action.yml
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
description: 'Mirror Azure DevOps work items over to GitHub issues'
inputs:
area-path:
description: 'The area path of work items to mirror'
required: true
repo-token:
description: 'The GITHUB_TOKEN secret'
required: true
ado-token:
description: 'The Azure DevOps token'
required: true
org-name:
description: 'Azure DevOps org name'
required: true
label-filter:
description: 'GitHub label to filter existing issues on'
required: false
labels-for-issues:
description: 'GitHub label to add to newly created issues'
required: false
work-item-type:
description: 'The Azure DevOps work item type to filter on'
required: false
work-item-status:
description: 'The Azure DevOps work item status to filter on'
required: true
issue-prefix:
description: 'The prefix to add to the newly created GitHub issues'
required: false
runs:
using: 'node12'
main: 'index.js'