From 13c5df083d6761c5780fc998e33ba4d38d45edf6 Mon Sep 17 00:00:00 2001 From: user Date: Tue, 1 Jul 2025 13:07:48 -0400 Subject: [PATCH] Enhance the weekly mutation workflow markdown This adds a code block to the cargo mutants issue creator for the missed mutations and prints the current version of cargo mutants being used so any new versions can easily be tracked where or why there are new mutations. --- .github/workflows/cron-weekly-cargo-mutants.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cron-weekly-cargo-mutants.yml b/.github/workflows/cron-weekly-cargo-mutants.yml index 74ec34629..3e7b01deb 100644 --- a/.github/workflows/cron-weekly-cargo-mutants.yml +++ b/.github/workflows/cron-weekly-cargo-mutants.yml @@ -22,13 +22,15 @@ jobs: run: | if [ -s mutants.out/missed.txt ]; then echo "New missed mutants found" + MUTANTS_VERSION=$(cargo mutants --version) gh issue create \ --title "New Mutants Found" \ --body "$(cat <