diff --git a/package.json b/package.json index e290ee1..3a29fcf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cloudflare-github-actions-runner", - "version": "1.0.6", + "version": "1.0.7", "description": "Run GitHub Actions jobs as disposable Cloudflare Containers.", "keywords": [ "ci", diff --git a/scripts/setup.ts b/scripts/setup.ts index 2095271..35e79ce 100644 --- a/scripts/setup.ts +++ b/scripts/setup.ts @@ -650,7 +650,7 @@ export async function createGitHubAppFromManifest(name, workerBaseUrl, options = const port = await listenOnLoopback(server); const manifestUrl = `http://127.0.0.1:${port}/github-app/manifest`; console.log( - `\nOpening GitHub to create the Cloudflare GitHub Actions App${owner === undefined ? "" : ` for ${owner.login}`}...`, + `\nOpening GitHub to create the Cloudflare GitHub Actions App${owner === undefined ? "" : ` for ${owner.login}`}: ${manifestUrl}`, ); open(manifestUrl); const manifestCode = await Promise.race([ @@ -1629,10 +1629,10 @@ function githubAppInstallUrl(slug) { async function installGitHubApp(slug, workerBaseUrl, setupValidationToken, githubRunnerOwner, pending = false) { const installUrl = githubAppInstallUrl(slug); - console.log("\nOpening the GitHub App installation page..."); + console.log(`\nOpening the GitHub App installation page: ${installUrl}`); console.log( `Install the App on ${githubOwnerLabel(githubRunnerOwner)} and select All repositories.\n` + - `If a browser did not open, use:\n${installUrl}`, + "If a browser did not open, use the link above.", ); openExternalUrl(installUrl);