in src/clients.ts [57:60]
function storeSecret(repository: string, name: string, value: string): void {
const args = ['secret', 'set', '--repo', repository, name];
spawnSync('gh', args, { input: value, stdio: ['pipe', 'inherit', 'inherit'] });
}