generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
48 lines (44 loc) · 1.23 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: 'AzDO release notes for GitHub'
description:
'Enhanced AB#xxx links in GitHub release notes for Azure DevOps work items.'
author: 'Piotr Karpala'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'clipboard'
color: 'purple'
# Define your inputs here.
inputs:
ado-pat:
description:
'Azure DevOps Personal Access Token with read access to work items.'
required: true
ado-org:
description: 'Azure DevOps organization name.'
required: true
ado-project:
description: 'Azure DevOps project name.'
required: true
repo-owner:
description: 'The repo owner.'
default: '${{ github.repository_owner }}'
required: true
repo-name:
description: 'The repo name.'
default: '${{ github.event.repository.name }}'
required: true
repo-token:
description:
'A GitHub token for API access. Defaults to {{ github.token }}.'
default: '${{ github.token }}'
required: true
release-id:
description: 'The release ID.'
required: true
default: '${{ github.event.release.id }}'
# Define your outputs here.
outputs:
workItems:
description: 'List of work items found in the release notes.'
runs:
using: node20
main: dist/index.js