forked from contributor-assistant/github-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
26 lines (26 loc) · 990 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
name: "CLA assistant lite"
description: "An action to handle the Contributor License Agreement"
author: "SAP"
branding:
icon: "award"
color: blue
inputs:
path-to-signatures:
description: "Give a path for storing CLAs in a json file "
default: "./signatures/cla.json"
branch:
description: "select a branch where all the CLAs are stored"
default: "master"
blockchain-storage-flag:
description: "Optional functionality to store all the blockchain signatures in the ethirium blockchain as a smart contract"
default: false
empty-commit-flag:
description: "GitHub Actions will add empty commit whenever the user signs the CLA (optional)"
default: true
allowlist:
description: "users in the allow list don't have to sign the CLA document"
path-to-cla-document:
description: "Fully qualified web link to cla document Example: https://github.com/cla-assistant/github-action/blob/master/SAPCLA.md"
runs:
using: "node12"
main: "lib/main.js"