Skip to content

Commit a0e7e9f

Browse files
committed
0.0.1
1 parent 7b5bdb3 commit a0e7e9f

File tree

11 files changed

+17937
-279
lines changed

11 files changed

+17937
-279
lines changed

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @actions/actions-runtime
1+
* @rodmatos

action.yml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
1-
name: 'Your name here'
2-
description: 'Provide a description here'
3-
author: 'Your name or organization here'
1+
name: 'action-delete-comment'
2+
description: 'Action that allows to delete comment'
3+
author: 'rodmatos'
44
inputs:
5-
milliseconds: # change this
5+
github_token:
6+
description: A GitHub token.
67
required: true
7-
description: 'input description here'
8-
default: 'default value if applicable'
8+
body:
9+
description: The comment body.
10+
required: true
11+
repo:
12+
description: The owner and repository name. e.g.) Codertocat/Hello-World
13+
required: false
14+
default: ${{ github.repository }}
15+
number:
16+
description: The number of the issue or pull request.
17+
required: false
918
runs:
1019
using: 'node12'
1120
main: 'dist/index.js'
21+
branding:
22+
icon: message-circle
23+
color: gray-dark

0 commit comments

Comments
 (0)