in src/clients.ts [68:71]
function removeSecret(repository: string, key: string): void { const args = ['secret', 'remove', '--repo', repository, key]; spawnSync('gh', args, { stdio: ['ignore', 'inherit', 'inherit'] }); }