-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaction.yml
27 lines (27 loc) · 829 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
name: git-democracy
author: Myyk
description: 'Add voting to your Pull Requests'
inputs:
token:
description: "GITHUB_TOKEN or a repo scoped PAT."
default: ${{ github.token }}
repository:
description: "The full name of the repository in which to tally votes."
default: ${{ github.repository }}
configPath:
description: "The path to the config files for this action."
default: ${{ github.action_path }}
payloadAction:
description: "Testing Parameter: Action payload override."
default: ""
issueNumber:
description: "Testing Parameter: Issue number to use."
serverURL:
description: "URL of github server. You shouldn't need to set this manually."
default: ${{ github.server_url }}
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'thumbs-up'
color: 'white'