ci/github-script: fix run script

Not a problem for prepare/commits, but the labels comand will remove the
temp directory again, before it actually runs the command. Nothing good
will come out of that!

+3 -3
+3 -3
ci/github-script/run
··· 49 49 .option('--no-dry', 'Make actual modifications') 50 50 .action(async (owner, repo, pr, options) => { 51 51 const prepare = (await import('./prepare.js')).default 52 - run(prepare, owner, repo, pr, options) 52 + await run(prepare, owner, repo, pr, options) 53 53 }) 54 54 55 55 program ··· 61 61 .option('--no-cherry-picks', 'Do not expect cherry-picks.') 62 62 .action(async (owner, repo, pr, options) => { 63 63 const commits = (await import('./commits.js')).default 64 - run(commits, owner, repo, pr, options) 64 + await run(commits, owner, repo, pr, options) 65 65 }) 66 66 67 67 program ··· 77 77 try { 78 78 process.env.GITHUB_WORKSPACE = tmp 79 79 process.chdir(tmp) 80 - run(labels, owner, repo, pr, options) 80 + await run(labels, owner, repo, pr, options) 81 81 } finally { 82 82 rmSync(tmp, { recursive: true }) 83 83 }