From 44a0eb59c2bfd152ade9aa96aa906ba89778c36b Mon Sep 17 00:00:00 2001 From: Marco Rosa Date: Wed, 27 Aug 2025 16:20:57 +0200 Subject: [PATCH] Add SAP AI PR bot --- .github/workflows/pr-bot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/pr-bot.yml diff --git a/.github/workflows/pr-bot.yml b/.github/workflows/pr-bot.yml new file mode 100644 index 0000000..56816c4 --- /dev/null +++ b/.github/workflows/pr-bot.yml @@ -0,0 +1,24 @@ +name: AI-assisted +on: + pull_request: + types: [ready_for_review] + +jobs: + summary: + name: PR Summary + runs-on: [ubuntu-latest] + steps: + - uses: SAP/ai-assisted-github-actions/pr-summary@v3 + with: + aicore-service-key: ${{ secrets.AICORE_SERVICE_KEY }} + model: gpt-4o + exclude-files: package-lock.json + review: + name: PR Review + runs-on: [ubuntu-latest] + steps: + - uses: SAP/ai-assisted-github-actions/pr-review@v3 + with: + aicore-service-key: ${{ secrets.AICORE_SERVICE_KEY }} + model: anthropic--claude-4-sonnet + exclude-files: package-lock.json