-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
41 lines (38 loc) · 1.02 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
name: Report Breaking Changes
author: Tyler Miller
description: Automatically update an issue and/or discussion with breaking changes.
runs:
using: node16
main: index.js
branding:
icon: cast
color: red
inputs:
token:
description: The token used for posting the comments.
required: false
default: ${{ github.token }}
issueNumber:
description: >
Issue to comment on for each breaking change commit found.
May be combined with `discussionNumber`.
(`integer`)
required: false
default: ''
discussionNumber:
description: >
Discussion to comment on for each breaking change commit found.
May be combined with `issueNumber`.
(`integer`)
required: false
default: ''
headerLevel:
description: >
Header level for the commit message title/subject (use `false` to
disable header styling of commit title).
(`1|2|3|4|5|6|false`)
required: false
default: 3
outputs:
found:
description: Whether a breaking change was detected. (`boolean`)