feat(sql_workbench): support DB2 in DMS->ODC bridge (Fixes actiontech/dms-ee#839) #357
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| pull_request: | |
| types: [opened, reopened, ready_for_review, synchronize] | |
| jobs: | |
| pr_agent_job: | |
| if: ${{ github.event.sender.type != 'Bot' && github.actor != 'actiontech-bot' }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| contents: write | |
| name: Run pr agent on every pull request, respond to user comments | |
| steps: | |
| - name: PR Agent action step | |
| id: pragent | |
| uses: qodo-ai/pr-agent@main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| github_action_config.pr_actions: '["opened", "reopened", "ready_for_review", "review_requested", "synchronize"]' | |
| OPENAI_API_VERSION: ${{ vars.OPENAI_API_VERSION }} | |
| github_action_config.auto_review: "true" | |
| github_action_config.auto_describe: "true" | |
| github_action_config.auto_improve: "true" | |
| OPENAI_KEY: ${{ secrets.OPENAI_KEY }} | |
| OPENAI.API_TYPE: "azure" | |
| OPENAI.API_BASE: ${{ secrets.OPENAI_API_BASE }} | |
| AZURE_API_VERSION: ${{ vars.AZURE_API_VERSION }} | |
| OPENAI.DEPLOYMENT_ID: ${{ secrets.DEPLOYMENT_ID }} |