forked from contributor-assistant/github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
43 lines (43 loc) · 1.93 KB
/
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
35
36
37
38
39
40
41
42
43
name: 'CLC assistant lite'
description: 'An action to handle the Contributor License Agreement (CLC) and Developer Certificate of Orgin (DCO)'
author: 'SAP'
branding:
icon: 'award'
color: blue
inputs:
path-to-signatures:
description: 'Give a path for storing CLCs in a json file '
default: './signatures/clc.json'
branch:
description: 'provide a branch where all the CLCs are stored'
default: 'master'
allowlist:
description: "users in the allow list don't have to sign the CLC document"
default: ''
remote-repository-name:
description: 'provide the remote repository name where all the signatures should be stored'
remote-organization-name:
description: 'provide the remote organization name where all the signatures should be stored'
path-to-document:
description: 'Fully qualified web link to the document - example: https://github.com/clc-assistant/github-action/blob/master/SAPCLC.md'
signed-commit-message:
description: 'Commit message when a new contributor signs the CLC in a PR'
signed-empty-commit-message:
description: 'Commit message when a new contributor signs the CLC (empty)'
create-file-commit-message:
description: 'Commit message when a new file is created'
custom-notsigned-prcomment:
description: 'Introductory message to ask new contributors to sign'
custom-pr-sign-comment:
description: 'The signature to be committed in order to sign the CLC.'
custom-allsigned-prcomment:
description: 'pull request comment when everyone has signed, defaults to **CLC Assistant Lite** All Contributors have signed the CLC.'
use-dco-flag:
description: 'Set this to true if you want to use a dco instead of a clc'
default: 'false'
lock-pullrequest-aftermerge:
description: 'Will lock the pull request after merge so that the signature the contributors cannot revoke their signature comments after merge'
default: 'true'
runs:
using: 'node16'
main: 'dist/index.js'