Skip to content

Add AI-assisted GitHub Actions workflow for PR summary and review #1

Add AI-assisted GitHub Actions workflow for PR summary and review

Add AI-assisted GitHub Actions workflow for PR summary and review #1

Workflow file for this run

name: AI-assisted
on:
pull_request:
types: [ready_for_review]
jobs:
summary:
name: PR Summary
if: github.actor != 'ospo-renovate[bot]'
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
display-mode: append
header-text: "---"
review:
name: PR Review
if: github.actor != 'ospo-renovate[bot]'
runs-on: [ubuntu-latest]
steps:
- uses: SAP/ai-assisted-github-actions/pr-review@v3
with:
aicore-service-key: ${{ secrets.AICORE_SERVICE_KEY }}
model: gpt-4o
exclude-files: package-lock.json