forked from tangled.org/core
this repo has no description
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.repo.removeSecret", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Remove a CI secret", 8 "input": { 9 "encoding": "application/json", 10 "schema": { 11 "type": "object", 12 "required": [ 13 "repo", 14 "key" 15 ], 16 "properties": { 17 "repo": { 18 "type": "string", 19 "format": "at-uri" 20 }, 21 "key": { 22 "type": "string", 23 "maxLength": 50, 24 "minLength": 1 25 } 26 } 27 } 28 } 29 } 30 } 31}