generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 7
/
action.yml
29 lines (29 loc) · 852 Bytes
/
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
name: 'comment-hider'
description: 'Github Action to hide Bot comments'
branding:
color: gray-dark
icon: check
author: 'kanga333'
inputs:
github_token:
description: 'The GitHub token used to create an authenticated client'
required: true
hide_user_name:
description: 'GitHub username to hide comments'
default: 'github-actions[bot]'
required: false
hide_reason:
description: 'A value from https://docs.github.com/en/graphql/reference/enums#reportedcontentclassifiers'
default: 'OUTDATED'
required: false
leave_visible:
description: 'The number of most recent comments to leave untouched'
default: '0'
required: false
issue_number:
description: 'Issue number, needed when running with workflow_run trigger'
default: ''
required: false
runs:
using: 'node16'
main: 'dist/index.js'