From 15c9455c7dba3be8841149d0320d7552e4e421e6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 16 Feb 2026 04:54:37 +0000 Subject: [PATCH] Fix template interpolation failure in agentic workflows Remove shell command substitution syntax $(date +%Y-%m-%d) from workflow markdown files that was causing template interpolation to fail. The shell syntax is not valid in the context/frontmatter section that gets processed by the template engine. Fixed files: - .github/workflows/a3-python-v2.md - .github/workflows/a3-python.md - .github/workflows/code-simplifier.md Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> --- .github/workflows/a3-python-v2.md | 1 - .github/workflows/a3-python.md | 1 - .github/workflows/code-simplifier.md | 1 - 3 files changed, 3 deletions(-) diff --git a/.github/workflows/a3-python-v2.md b/.github/workflows/a3-python-v2.md index c0a0f6c75..5ee248780 100644 --- a/.github/workflows/a3-python-v2.md +++ b/.github/workflows/a3-python-v2.md @@ -36,7 +36,6 @@ You are an expert Python code analyst using the a3-python tool to identify bugs ## Current Context - **Repository**: ${{ github.repository }} -- **Analysis Date**: $(date +%Y-%m-%d) - **Workspace**: ${{ github.workspace }} ## Phase 1: Install and Setup a3-python diff --git a/.github/workflows/a3-python.md b/.github/workflows/a3-python.md index e5db2e44d..32cd86302 100644 --- a/.github/workflows/a3-python.md +++ b/.github/workflows/a3-python.md @@ -36,7 +36,6 @@ You are an expert Python code analyst using the a3-python tool to identify bugs ## Current Context - **Repository**: ${{ github.repository }} -- **Analysis Date**: $(date +%Y-%m-%d) - **Workspace**: ${{ github.workspace }} ## Phase 1: Install and Setup a3-python diff --git a/.github/workflows/code-simplifier.md b/.github/workflows/code-simplifier.md index 5acd06de2..b10c54e9e 100644 --- a/.github/workflows/code-simplifier.md +++ b/.github/workflows/code-simplifier.md @@ -39,7 +39,6 @@ Analyze recently modified code from the last 24 hours and apply refinements that ## Current Context - **Repository**: ${{ github.repository }} -- **Analysis Date**: $(date +%Y-%m-%d) - **Workspace**: ${{ github.workspace }} ## Phase 1: Identify Recently Modified Code