Skip to content

Commit

Permalink
Merge branch 'main' into react-image/feat/initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
manudeli authored Sep 12, 2023
2 parents 01610b3 + c08a063 commit 46aed0a
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 69 deletions.
74 changes: 38 additions & 36 deletions .github/ISSUE_TEMPLATE/1-bug-report.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,39 @@
name: fepack 버그 레포트
description: 문제 상황과 관련된 버그를 보고하는데 사용합니다.
---
name: "Bug Report"
about: Report a reproducible bug or regression in fepack.
title: "bug: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: "## Issue Title\n<!-- 간결하게 문제 상황을 나타내는 제목을 작성해주세요. -->"

- type: textarea
attributes:
label: "문제 상황"
description: "어떤 문제가 발생했는지 구체적으로 기술하세요. 가능하다면, 문제가 언제, 어떻게 발생하는지를 포함한 상황을 자세히 설명해주세요."
validations:
required: true

- type: textarea
attributes:
label: "기대하는 동작"
description: "문제 상황이 발생하지 않았을 때 어떤 동작을 기대했는지 설명해주세요."
validations:
required: true

- type: textarea
attributes:
label: "스크린샷"
description: "문제 상황을 보여주는 스크린샷이 있다면 첨부해주세요."

- type: textarea
attributes:
label: "제안하는 해결 방법"
description: "문제를 해결할 수 있는 방법이 있다면 제시해주세요."

- type: textarea
attributes:
label: "추가 정보"
description: "문제 상황과 관련하여 추가적인 정보가 있다면 기입해주세요."
labels: "bug"
---

<!--
Please provide a clear and concise description of what the bug is. If possible,
describe when and how the issue arises. Make sure to include screenshots if
necessary, and test with the latest version of the relevant fepack packages to
ensure the issue hasn't been resolved yet.
-->

fepack version:

## Steps To Reproduce

1.
2.

<!--
Your bug will be addressed more promptly if we can reproduce it without any
dependencies other than fepack. Issues without a clear reproduction step or
code examples might be closed if they're not actionable.
-->

Link to code example:

<!--
Please provide a CodeSandbox link, a GitHub repository link, or a minimal code
example that reproduces the issue. If applicable, add screenshots of the
application.
-->

## The current behavior


## The expected behavior
39 changes: 22 additions & 17 deletions .github/ISSUE_TEMPLATE/2-feature-request.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
name: fepack 기능 추가 제보
description: 새로운 기능 제안 또는 기존 기능의 개선을 제보하는데 사용합니다.
---
name: "Feature Request"
about: Suggest a new feature or an enhancement to an existing one.
title: "feat: "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: "## Issue Title\n<!-- 간결하게 기능 추가 제안을 나타내는 제목을 작성하세요. -->"
labels: "enhancement"
---

- type: textarea
attributes:
label: "기능 설명"
description: "추가하거나 개선하고자 하는 기능에 대해 구체적으로 기술하세요."
validations:
required: true
<!--
Please provide a succinct and clear description of the proposed feature or enhancement.
Describe in detail what you want to suggest and why it's important.
-->

- type: textarea
attributes:
label: "추가 정보"
description: "기능 추가 제안과 관련하여 추가적인 정보가 있다면 기입하세요."
## Feature Description:

<!--
Clearly and concisely describe the feature you'd like to see added or improved upon.
-->


## Additional Information:

<!--
If there's any other context, details, or information related to this feature request,
please provide it here.
-->
24 changes: 8 additions & 16 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,15 @@
## Related Issue
## Summary

<!-- 관련 이슈를 링크해 주세요. 이를 통해 해당 PR과 연결된 문제를 명확하게 할 수 있습니다. -->
<!-- Please summarize your changes. -->

## Changes
<!-- Please link to any applicable information (forum posts, bug reports, etc.). -->

<!-- 이 PR로 인해 바뀌는 것이 무엇인지 상세하게 적어주세요. 이유가 있다면 연결해 주세요 -->
## Checks

## Screenshots
<!-- For completed items, change [ ] to [x]. -->

<!-- PR의 변경사항을 보여주는 스크린샷. 필요시 추가하세요. -->
<!-- If you leave this checklist empty, your PR will very likely be closed. -->

## To Reviewer
Please check the following:

<!-- 리뷰어에게 별도로 전달하고 싶은 내용이 있다면 입력하세요. -->

## Additional Context(optional)

<!-- 추가적인 문맥: 레퍼런스, 종속성 변경 등 PR과는 직접적으로 관련되지 않은 정보를 입력하세요. -->

## How Has This Been Tested?

<!-- PR이 동작하는지 확인하기 위한 테스트 방법 및 케이스를 상세하게 설명해주세요. -->
- [ ] I have written documents and tests, if needed.
15 changes: 15 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"@fepack/image":
- packages/image/*
documentation:
- websites/documentation/*
- "**/*.md"
eslint:
- configs/eslint-config/*
tsconfig:
- configs/tsconfig/*
- tsconfig.json
dependencies:
- pnpm*.yaml
- package*.json
github:
- .github/*
12 changes: 12 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Pull Request Labeler"
on:
- pull_request_target

jobs:
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4

0 comments on commit 46aed0a

Please sign in to comment.