Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 3 additions & 3 deletions scripts/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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([
Expand Down Expand Up @@ -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);

Expand Down