From 86ae6695d398c89fa70aac531387e76d534f75b4 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 29 Aug 2025 16:52:49 -0600 Subject: [PATCH 1/2] fix: update npm badge and add status badges - Replace badge.fury.io with more reliable shields.io npm badge - Add npm downloads badge for package popularity - Add CI status badge for build status - All badges now link to relevant pages This improves README presentation and provides better package status visibility for users. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ace45e7..88f600b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ # Act Testing MCP -[![npm version](https://badge.fury.io/js/act-testing-mcp.svg)](https://badge.fury.io/js/act-testing-mcp) +[![npm version](https://img.shields.io/npm/v/act-testing-mcp.svg)](https://www.npmjs.com/package/act-testing-mcp) +[![npm downloads](https://img.shields.io/npm/dm/act-testing-mcp.svg)](https://www.npmjs.com/package/act-testing-mcp) [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE) +[![CI](https://github.com/GarthDB/act-testing-mcp/workflows/CI/badge.svg)](https://github.com/GarthDB/act-testing-mcp/actions) Model Context Protocol (MCP) server for testing GitHub Actions workflows locally using [nektos/act](https://github.com/nektos/act). From 1b673639d0521b7e234ab21c93acc798d0fa8ada Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 29 Aug 2025 17:07:18 -0600 Subject: [PATCH 2/2] docs: add changeset for npm badge updates --- .changeset/update-npm-badges.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .changeset/update-npm-badges.md diff --git a/.changeset/update-npm-badges.md b/.changeset/update-npm-badges.md new file mode 100644 index 0000000..3809da6 --- /dev/null +++ b/.changeset/update-npm-badges.md @@ -0,0 +1,10 @@ +--- +"act-testing-mcp": patch +--- + +fix: update npm badge and add status badges + +- Replace broken badge.fury.io npm badge with reliable shields.io version +- Add npm downloads badge to show package adoption +- Add CI status badge for build health visibility +- Improve README presentation and discoverability