From 5dae67d0a244e4172b535fd2291478c115711b53 Mon Sep 17 00:00:00 2001 From: DevOps Bot Date: Mon, 15 Dec 2025 00:00:49 +0000 Subject: [PATCH] ci: pushing new workflows --- .github/workflows/issue-agent.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/issue-agent.yml diff --git a/.github/workflows/issue-agent.yml b/.github/workflows/issue-agent.yml new file mode 100644 index 0000000..f35d37e --- /dev/null +++ b/.github/workflows/issue-agent.yml @@ -0,0 +1,24 @@ +jobs: + dispatch: + if: contains(github.event.comment.body, '@bot') + permissions: + contents: read + issues: read + runs-on: + - ubuntu-latest + steps: + - env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + name: Send task to coding agent + uses: https://git.yusufali.ca/automation/action@main + with: + api_token: ${{ secrets.AGENT_TOKEN }} + api_url: ${{ secrets.AGENT_API_URL }} + bot_route: codebot + debug: false +name: Send Tasks to Agent +'on': + issue_comment: + types: + - created + - edited