forked from Blackjacx/backlog-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
25 lines (25 loc) · 1.4 KB
/
action.yml
File metadata and controls
25 lines (25 loc) · 1.4 KB
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
name: 'Backlog Notifier'
description: 'Automatically comments on tickets connected to your PRs, with the release version, when they get released.'
inputs:
reference-repo-prefixes:
description: 'Prefixes for issue numbers of reference repos. You can specify multiple comma-separated ones. The should be single words like BACKLOG or BUGLOG which could identify repos for backlog and bug tickets respectively. A complete identifier, as the action searches it in the PR description, should consist of this prefix and the issue number separated by a dash, e.g. `BACKLOG-539`.'
required: true
default: 'BACKLOG'
reference-repo-names:
description: 'Repository names that contain tickets to notify. This list must have the same number of elements as the repository prefixes list. Specify one repository name for each prefix. The repository must be located under the same GitHub account as the repository you use this action on.'
required: true
default: 'backlog'
message:
description: 'The message that is posted in the backlog ticket. Use `#` as placeholder for the version number.'
required: true
default: 'Dang! This feature has just been released in version # 🎉'
changelog-path:
description: 'The path to the CHANGELOG.md file. Defaults to CHANGELOG.md'
required: false
default: 'CHANGELOG.md'
branding:
icon: 'bell'
color: 'green'
runs:
using: 'node16'
main: 'index.js'