From 700f5981ab801731088b22078003d8b8efb8ac9a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 15 Oct 2025 12:57:04 +0000 Subject: [PATCH 1/2] Initial plan From 9841e74af9507ba0826fcdae9cacde702a67bbf4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 15 Oct 2025 13:01:19 +0000 Subject: [PATCH 2/2] chore: skip commit validation for Dependabot PRs Co-authored-by: nickytonline <833231+nickytonline@users.noreply.github.com> --- .github/workflows/validate-commits.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/validate-commits.yml b/.github/workflows/validate-commits.yml index 9c770c9..d8dbcb0 100644 --- a/.github/workflows/validate-commits.yml +++ b/.github/workflows/validate-commits.yml @@ -7,6 +7,8 @@ on: jobs: validate-commits: runs-on: ubuntu-latest + # Skip validation for Dependabot PRs since they follow their own commit format + if: github.actor != 'dependabot[bot]' steps: - name: Checkout code