generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
30 lines (29 loc) · 1.2 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
name: 'Jira Telegram'
description: 'Link Jira tickets without compromising Pull Request Titles.'
author: 'therynamo'
branding:
icon: briefcase
color: gray-dark
inputs:
github_token:
required: true
description: 'Authorized github token to read and write to pull requests'
jira_host:
required: true
description: "Hostname for where your team's Jira instance is hosted"
default: 'https://jira.mycompany.com'
project_keys:
required: false
description: "A comma separated list of project keys to be matched on in a pull request body. (E.g. https://jira.mycompany.com/browse/PROJ-123 - you'd list PROJ in this string"
ignored_project_keys:
required: false
description: "A comma separated list of project keys to not be matched on in a pull request body. (E.g. https://jira.mycompany.com/browse/PROJ-123 - you'd list PROJ in this string"
first_ticket_only:
required: false
description: 'When true - only the first Jira ticket found will be committed to the Pull Request'
use_pr_comment_blocks:
required: false
description: 'When true - Jira Telegram will only pick up tickets inside of the telegram comment blocks'
runs:
using: 'node12'
main: 'dist/index.js'