From 734647350186a6270c2940fbc370a6d5790e6588 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 22 Dec 2025 20:44:19 +0000 Subject: [PATCH 1/2] Initial plan From 12f8ee26dc9e25a9f2dcd38b41aafd30f709d22b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 22 Dec 2025 20:53:08 +0000 Subject: [PATCH 2/2] Fix YAML syntax errors in license-check workflow - Use separate -m flags for multi-line git commit message - Add proper indentation to template literal content to fix YAML parsing Co-authored-by: SamMorrowDrums <4811358+SamMorrowDrums@users.noreply.github.com> --- .github/workflows/license-check.yml | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/.github/workflows/license-check.yml b/.github/workflows/license-check.yml index a2638eb1f..ce2fa26fb 100644 --- a/.github/workflows/license-check.yml +++ b/.github/workflows/license-check.yml @@ -57,9 +57,7 @@ jobs: git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" git add third-party-licenses.*.md third-party/ - git commit -m "chore: regenerate license files - -Auto-generated by license-check workflow" + git commit -m "chore: regenerate license files" -m "Auto-generated by license-check workflow" git push - name: Check if already commented @@ -91,18 +89,18 @@ Auto-generated by license-check workflow" repo: context.repo.repo, issue_number: context.issue.number, body: `## ⚠️ License files need updating - -The license files are out of date. I tried to fix them automatically but don't have permission to push to this branch. - -**Please run:** -\`\`\`bash -script/licenses -git add third-party-licenses.*.md third-party/ -git commit -m "chore: regenerate license files" -git push -\`\`\` - -Alternatively, enable "Allow edits by maintainers" in the PR settings so I can fix it automatically.` + + The license files are out of date. I tried to fix them automatically but don't have permission to push to this branch. + + **Please run:** + \`\`\`bash + script/licenses + git add third-party-licenses.*.md third-party/ + git commit -m "chore: regenerate license files" + git push + \`\`\` + + Alternatively, enable "Allow edits by maintainers" in the PR settings so I can fix it automatically.` }); - name: Fail check if changes needed