-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
34 lines (34 loc) · 1008 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
30
31
32
33
34
name: 'Comment Charm'
description: 'Transform your PR comments with magical compliments and cheeky insults using GitHub Actions!'
inputs:
comment-body:
description: 'The body of the comment to process.'
required: true
comment-id:
description: 'The id of the comment to update.'
required: true
language:
description: 'The language to use for the custom text.'
default: 'en'
required: false
language-file:
description: 'The file containing the custom text.'
default: ''
required: false
token:
description: 'GITHUB_TOKEN or a repo scoped PAT.'
default: ${{ github.token }}
required: false
repository:
description: 'The full name of the repository in which to create or update a comment.'
default: ${{ github.repository }}
required: false
outputs:
updated-body:
description: 'The updated comment body with keywords replaced.'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'message-square'
color: 'gray-dark'