From 73bf4f367768b6ce362b7fecd9271acea60e09e8 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Fri, 9 Jan 2026 13:55:17 -0500 Subject: [PATCH 1/4] docs(readme): remove CI non-interactive mode section Nobody initializes a repo from CI - the init command is for maintainers setting up rnr in their project. --- README.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/README.md b/README.md index 591e1b3..a4ce7c2 100644 --- a/README.md +++ b/README.md @@ -78,13 +78,6 @@ Which platforms should this project support? Selected: 1.95 MB total ``` -Or use non-interactive mode for CI: -```bash -./rnr init --platforms linux-amd64,macos-arm64,windows-amd64 -./rnr init --all-platforms -./rnr init --current-platform-only -``` - ### What Gets Created ``` From 9d591bb5cd442b839718c9248dd8cd9e93a7dde6 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Fri, 9 Jan 2026 13:55:56 -0500 Subject: [PATCH 2/4] docs(readme): use static badges for private repo shields.io cannot access GitHub API for private repos, so using static badges with for-the-badge style that link to the workflows. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a4ce7c2..54911a6 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ **Clone a repo. Run tasks. No setup required.** -[![Build & Test](https://img.shields.io/github/actions/workflow/status/CodingWithCalvin/rnr.cli/build.yml?style=for-the-badge&label=Build%20%26%20Test)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/build.yml) -[![Integration Tests](https://img.shields.io/github/actions/workflow/status/CodingWithCalvin/rnr.cli/integration-test.yml?style=for-the-badge&label=Integration%20Tests)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/integration-test.yml) +[![Build & Test](https://img.shields.io/badge/Build%20%26%20Test-passing-brightgreen?style=for-the-badge)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/build.yml) +[![Integration Tests](https://img.shields.io/badge/Integration%20Tests-passing-brightgreen?style=for-the-badge)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/integration-test.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge)](https://opensource.org/licenses/MIT) --- From a929fdc48b9a009f1c34943dc5175a3bea485f44 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Fri, 9 Jan 2026 13:56:42 -0500 Subject: [PATCH 3/4] docs(readme): use GitHub native badges for workflow status GitHub native badges show actual status and work for private repos. shields.io cannot access GitHub API for private repos. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 54911a6..cd0da3d 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ **Clone a repo. Run tasks. No setup required.** -[![Build & Test](https://img.shields.io/badge/Build%20%26%20Test-passing-brightgreen?style=for-the-badge)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/build.yml) -[![Integration Tests](https://img.shields.io/badge/Integration%20Tests-passing-brightgreen?style=for-the-badge)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/integration-test.yml) +[![Build & Test](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/build.yml/badge.svg)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/build.yml) +[![Integration Tests](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/integration-test.yml/badge.svg)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/integration-test.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge)](https://opensource.org/licenses/MIT) --- From da651a44d11e74484182aef46bdd98cb367b631f Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Fri, 9 Jan 2026 13:59:34 -0500 Subject: [PATCH 4/4] docs(readme): restore shields.io dynamic badges with for-the-badge style --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cd0da3d..a4ce7c2 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ **Clone a repo. Run tasks. No setup required.** -[![Build & Test](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/build.yml/badge.svg)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/build.yml) -[![Integration Tests](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/integration-test.yml/badge.svg)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/integration-test.yml) +[![Build & Test](https://img.shields.io/github/actions/workflow/status/CodingWithCalvin/rnr.cli/build.yml?style=for-the-badge&label=Build%20%26%20Test)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/build.yml) +[![Integration Tests](https://img.shields.io/github/actions/workflow/status/CodingWithCalvin/rnr.cli/integration-test.yml?style=for-the-badge&label=Integration%20Tests)](https://github.com/CodingWithCalvin/rnr.cli/actions/workflows/integration-test.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge)](https://opensource.org/licenses/MIT) ---