From 0ee1c90fa29f3c0e13148dbfa754685d9e46f766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20G=C3=B3is?= Date: Mon, 30 Jun 2025 13:54:37 +0100 Subject: [PATCH] chore: AI flag cleanup action test (#10242) Adds a test AI flag cleanup action. --- .github/workflows/ai-flag-cleanup.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ai-flag-cleanup.yml diff --git a/.github/workflows/ai-flag-cleanup.yml b/.github/workflows/ai-flag-cleanup.yml new file mode 100644 index 0000000000..ede77b7b76 --- /dev/null +++ b/.github/workflows/ai-flag-cleanup.yml @@ -0,0 +1,17 @@ +name: AI flag cleanup +on: + issues: + types: [labeled] + +jobs: + flag-cleanup: + uses: mirrajabi/aider-github-workflows/.github/workflows/aider-issue-to-pr.yml@v1.0.0 + if: github.event.label.name == 'unleash-flag-completed' + with: + issue-number: ${{ github.event.issue.number }} + base-branch: ${{ github.event.repository.default_branch }} + chat-timeout: 10 + api_key_env_name: GEMINI_API_KEY + model: gemini + secrets: + api_key_env_value: ${{ secrets.GEMINI_API_KEY }}