From 0d709981d15765b1f489e4b32210657dcfd9a015 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 7 Feb 2026 21:38:22 +0000 Subject: [PATCH 1/2] Initial plan From 6f4454ae6e440fc07ef08df6923a624b7566486c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 7 Feb 2026 21:39:44 +0000 Subject: [PATCH 2/2] Fix empty matrix issue by adding if condition to skip validate job Co-authored-by: rajbos <6085745+rajbos@users.noreply.github.com> --- .github/workflows/validate-skills.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-skills.yml b/.github/workflows/validate-skills.yml index b22df74..8f005a4 100644 --- a/.github/workflows/validate-skills.yml +++ b/.github/workflows/validate-skills.yml @@ -60,7 +60,7 @@ jobs: validate: needs: detect-changes - #if: needs.detect-changes.outputs.skills != '[]' + if: needs.detect-changes.outputs.skills != '[]' runs-on: ubuntu-latest strategy: fail-fast: false