Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into feature/june-777_점주가게등록
Browse files Browse the repository at this point in the history
  • Loading branch information
june-777 committed Aug 13, 2024
2 parents 8822290 + d214ca4 commit 6d26922
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: Report bug
about: 오류가 발생한 영역에 대해 보고합니다 [Dev]
title: "[BUG] "
labels: bug
title: "[오류] "
labels: 🐞 BugFix
assignees: ''

---
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: Feature request
about: Github Discussion, 회의에서 화제가 된 주제에 대해 제안합니다 [Moderator, Chef]
title: '[REQ]'
labels: enhancement
title: "[기능] "
labels: ✨ Feature
assignees: ''

---
Expand Down
3 changes: 2 additions & 1 deletion .github/pr-template.md → .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
## 💡 다음 이슈를 해결했어요.

### Issue Link - #1

- (가능한 한 자세히 작성해 주시면 도움이 됩니다.)

<br>

## 💡 이슈를 처리하면서 추가된 코드가 있어요.
### Issue Link - #1

- (없다면 이 문항을 지워주세요.)

Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build-Test

on:
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build with Gradle
run: ./gradlew build

0 comments on commit 6d26922

Please sign in to comment.