[COZY-438] feat : 스웨거 ui 접근전 파라미터에 key를 넣고 key 검증에 성공하면 브라우저 쿠키에 토큰을 넣어줍니다. #259
Workflow file for this run
This file contains 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
name: PR 리뷰 봇 | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
permissions: | |
pull-requests: write | |
jobs: | |
review: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: AWS Bedrock Code Review Action | |
uses: eple0329/[email protected] | |
with: | |
aws-access-key-id: ${{ secrets.REVIEW_AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.REVIEW_AWS_SECRET_ACCESS_KEY }} | |
aws-region: 'us-east-1' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
model: 'amazon.titan-text-premier-v1:0' | |
max-tokens: 3000 | |
language: 'Korean' | |
title: '리뷰해드려요~' | |
home-directory: 'src/main/java/com/cozymate/cozymate_server' | |
prompt: 'Please proceed with the code review for each change in the entered file. Please organize what changes have been made and if there are any additional improvements you want to suggest with codeblock. Please write the name of the changed file as ## {name} and the review as a broken list. For example, ## {name} - Review 1 - Review 2 - Review 3' | |