generated from int128/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaction.yaml
33 lines (30 loc) · 839 Bytes
/
action.yaml
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
name: hide-comment
description: Hide comment(s) of a pull request or issue
inputs:
authors:
description: Author condition (multi-line string)
required: false
starts-with:
description: Starts-with condition (multi-line string)
required: false
ends-with:
description: Ends-with condition (multi-line string)
required: false
contains:
description: Contains condition (multi-line string)
required: false
issue-number:
description: Number of an issue or pull request on which to hide comment(s)
required: false
token:
description: GitHub token to post a comment
required: true
default: ${{ github.token }}
outputs:
starts-with:
description: Same as inputs.starts-with
ends-with:
description: Same as inputs.ends-with
runs:
using: 'node20'
main: 'dist/index.js'