From ba28f2d0443c079815aec498fb990e472da4e279 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 2 Nov 2025 16:05:51 +0000 Subject: [PATCH 1/2] Initial plan From 4e1baf4e7fc5a968e26313545377a00380233bb2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 2 Nov 2025 16:08:23 +0000 Subject: [PATCH 2/2] Fix review feedback: date consistency, grep pattern, remove unused var, update workflow count Co-authored-by: SomeRandmGuyy <127457986+SomeRandmGuyy@users.noreply.github.com> --- .github/README.md | 2 +- .github/VERSION | 2 +- .github/scripts/version-info.sh | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/README.md b/.github/README.md index e9c9f7c..1c120df 100644 --- a/.github/README.md +++ b/.github/README.md @@ -15,7 +15,7 @@ > 💡 **Quick Start**: New to this version? Check [VERSION](VERSION) for commit details and [FEATURES.md](FEATURES.md) for the complete list of 15 workflows, 23 tools, and all integrations available at this version. ### Migration Summary -- ✅ **Phase 1:** 13 Workflows migrated (fsl-*) +- ✅ **Phase 1:** 15 Workflows migrated (14 fsl-*, 1 continuum-orchestrator.yml) - ✅ **Phase 2:** 23 Tools organized (fsl-pipelines/) - ✅ **Phase 3:** 18 Documentation files organized - ✅ **Phase 4:** 8 Integrations tested and documented diff --git a/.github/VERSION b/.github/VERSION index 7aec88d..af8e503 100644 --- a/.github/VERSION +++ b/.github/VERSION @@ -6,7 +6,7 @@ ## Commit Information - **Commit Hash**: 4a45732e38841dd1c68df51ec8ee20000012cdd2 - **Short Hash**: 4a45732 -- **Date**: October 24, 2025 +- **Date**: January 22, 2025 - **Branch**: copilot/understand-context-awareness-features ## SPEC Version diff --git a/.github/scripts/version-info.sh b/.github/scripts/version-info.sh index cc4ff33..04fb0a2 100755 --- a/.github/scripts/version-info.sh +++ b/.github/scripts/version-info.sh @@ -33,8 +33,7 @@ show_summary() { # Extract version from VERSION file if [ -f "$GITHUB_DIR/VERSION" ]; then - VERSION=$(grep "^**v" "$GITHUB_DIR/VERSION" | head -1 | sed 's/\*\*//g') - COMMIT=$(grep "^- \*\*Commit Hash\*\*" "$GITHUB_DIR/VERSION" | cut -d: -f2 | xargs) + VERSION=$(grep "\*\*v" "$GITHUB_DIR/VERSION" | head -1 | sed 's/\*\*//g') SHORT_COMMIT=$(grep "^- \*\*Short Hash\*\*" "$GITHUB_DIR/VERSION" | cut -d: -f2 | xargs) echo "Version: $VERSION"