Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore: ✨ Open API 코드 리뷰 CI 파이프라인 추가 #130

Merged
merged 21 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
907e8a5
fix: 배포 파이프라인 이미지 빌드 버전 추가
psychology50 May 30, 2024
8c58d77
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jun 2, 2024
a2d469e
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jun 5, 2024
791d4fd
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jun 5, 2024
f062461
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jun 5, 2024
a48ab9a
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jun 6, 2024
893efe6
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jun 11, 2024
b579501
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jun 25, 2024
2422521
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jun 25, 2024
254d10f
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jun 26, 2024
72786c2
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jun 28, 2024
fbfb5e1
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jul 1, 2024
2bfd209
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jul 3, 2024
a390ba8
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jul 11, 2024
93943aa
Merge branch 'dev' of https://github.com/CollaBu/pennyway-was into dev
psychology50 Jul 15, 2024
49748ae
chore: chat gpt code review ci pipeline 추가
psychology50 Jul 15, 2024
3af2baf
chore: chat gpt code review ci pipeline 추가
psychology50 Jul 15, 2024
7ab2bff
rename: create-tag-and-release 파이프라인 주석 주가
psychology50 Jul 15, 2024
0a784d1
Merge remote-tracking branch 'origin/feat/chat-gpt-code-review-ci' in…
psychology50 Jul 15, 2024
c0684bf
chore: review ci model 수정
psychology50 Jul 15, 2024
af42588
fix: model 옵션 제거
psychology50 Jul 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create-tag-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

release:
needs: extract-info
if: ${{ needs.extract-info.outputs.module != 'Ignore' }}
if: ${{ needs.extract-info.outputs.module != 'Ignore' }} # Ignore로 시작하는 PR은 파이프라인 중단
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/open-api-code-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Code Review

permissions:
contents: read
pull-requests: write

on:
pull_request:
types: [ opened, synchronize ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: anc95/ChatGPT-CodeReview@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPEN_API_KEY }}
LANGUAGE: Korean
Loading