From 5830ef2abdfb9b343b534d5224822fdc5d8f7115 Mon Sep 17 00:00:00 2001 From: darthsharp <48331467+darthsharp@users.noreply.github.com> Date: Fri, 20 Mar 2026 16:45:41 +0100 Subject: [PATCH] feat(workflow): add `clear-ai-configs` input to sync AI configurations - Introduced `clear-ai-configs` boolean input to `.github/workflows/sync-ai-config.yml` for optionally clearing existing AI configuration files before syncing. - Updated the workflow to pass the new input to the sync process. --- .github/workflows/sync-ai-config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/sync-ai-config.yml b/.github/workflows/sync-ai-config.yml index e9364a23..6b3771a9 100644 --- a/.github/workflows/sync-ai-config.yml +++ b/.github/workflows/sync-ai-config.yml @@ -13,6 +13,11 @@ on: required: false type: string default: 'main' + clear-ai-configs: + description: 'Clear existing AI configuration files before syncing' + required: false + type: boolean + default: false schedule: - cron: '0 0 * * *' # Every day at midnight @@ -34,3 +39,4 @@ jobs: ai-systems: 'copilot,claude,junie' ai-base-version: ${{ inputs.ai-base-version }} create-pull-request: ${{ inputs.create-pull-request }} + clear-ai-configs: ${{ inputs.clear-ai-configs }}