-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
862 changed files
with
45,980 additions
and
28,381 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: "UI 개선 건의" | ||
description: UI 개선 건의 작성 기본 양식입니다. | ||
labels: ["ui"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
작성 예시 : "[FE] 지도-E/V 버튼 눌렀을때 나타나는 로고 색 다크모드 적용" | ||
- type: textarea | ||
id: ui-description | ||
attributes: | ||
label: UI 문제점 설명 | ||
description: 문제가 언제/어떻게 발생했는지 명확하게 적어주세요. | ||
placeholder: 설명을 적어주세요. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: 재현 방법 | ||
description: 문제가 재현되는 상황을 설명해주세요. | ||
placeholder: 설명을 적어주세요. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: improvement | ||
attributes: | ||
label: 기대하는 UI | ||
description: 기대하는 UI에 대해서 설명해주세요. | ||
placeholder: 설명을 적어주세요. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: system-info | ||
attributes: | ||
label: 시스템 환경 (선택 사항) | ||
description: 현재 버그가 발생한 시스템 환경을 적어주세요. | ||
render: shell | ||
placeholder: OS, 브라우저 등을 적어주세요. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: 추가 건의사항 | ||
description: Cabi에 바라시는 점이나, 하시고 싶은 말씀을 적어주세요. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Cleaning Up Stale Branches | ||
|
||
permissions: | ||
contents: write | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * *" # Every day at 00:00 UTC (KST 09:00) | ||
|
||
env: | ||
DAYS_BEFORE_STALE: 30 | ||
DAYS_BEFORE_DELETE: 7 | ||
|
||
jobs: | ||
cleanup-stale-branches: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Cleaning up Stale Branches | ||
uses: sichoi42/cleanup-stale-branch@v1 | ||
id: stale | ||
with: | ||
days-before-stale: ${{ env.DAYS_BEFORE_STALE }} | ||
days-before-delete: ${{ env.DAYS_BEFORE_DELETE }} | ||
ignoring-branches: "main,dev,onboard,nestJS" | ||
ignore-branches-pattern: "release/*" | ||
# FIXME: Set dry-run to false when you are ready to delete branches | ||
dry-run: false | ||
use-webhook: true | ||
webhook-url: ${{ secrets.DISCORD_GITHUB_WEBHOOK_URL }} | ||
webhook-type: "discord" | ||
stale-branch-message: > | ||
This branch is considered stale because ${{ env.DAYS_BEFORE_STALE }} days have passed since the last commit. | ||
If you still need this branch, please push a new commit to keep it alive. | ||
If not, this branch will be deleted in ${{ env.DAYS_BEFORE_DELETE }} days. | ||
delete-branch-message: > | ||
This branch was deleted because ${{ env.DAYS_BEFORE_DELETE }} days have passed since the last commit. | ||
- name: Print outputs | ||
run: echo ${{ format('{0},{1}', toJSON(steps.stale.outputs.staled-branches), toJSON(steps.stale.outputs.deleted-branches)) }} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Close Stale Issues/PRs | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * *" # Every day at 00:00 UTC (KST 09:00) | ||
|
||
env: | ||
OPERATIONS_PER_RUN: 128 | ||
DAYS_BEFORE_ISSUE_STALE: 30 | ||
DAYS_BEFORE_ISSUE_CLOSE: 3 | ||
DAYS_BEFORE_PR_STALE: 30 | ||
DAYS_BEFORE_PR_CLOSE: 3 | ||
|
||
jobs: | ||
close-stale-issues-and-prs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
operations-per-run: ${{ env.OPERATIONS_PER_RUN }} | ||
days-before-issue-stale: ${{ env.DAYS_BEFORE_ISSUE_STALE }} | ||
days-before-issue-close: ${{ env.DAYS_BEFORE_ISSUE_CLOSE }} | ||
exempt-issue-labels: "no stale" | ||
stale-issue-label: "stale" | ||
stale-issue-message: > | ||
해당 이슈는 지난 ${{ env.DAYS_BEFORE_ISSUE_STALE }}일 동안 활동이 없어서 "stale" 상태로 표시되었어요. | ||
${{ env.DAYS_BEFORE_ISSUE_CLOSE }}일 이내에 "no stale"으로 태그가 지정되거나 다른 활동이 발생하지 않으면 자동으로 닫힐 예정입니다. | ||
close-issue-message: > | ||
해당 이슈는 "stale" 상태로 표시된 후 ${{ env.DAYS_BEFORE_ISSUE_CLOSE }}일 동안 활동이 없어서 자동으로 닫혔어요. | ||
remove-issue-stale-when-updated: true | ||
days-before-pr-stale: ${{ env.DAYS_BEFORE_PR_STALE }} | ||
days-before-pr-close: ${{ env.DAYS_BEFORE_PR_CLOSE }} | ||
exempt-pr-labels: "no stale" | ||
stale-pr-label: "stale" | ||
stale-pr-message: > | ||
해당 PR은 지난 ${{ env.DAYS_BEFORE_PR_STALE }}일 동안 활동이 없어서 "stale" 상태로 표시되었어요. | ||
${{ env.DAYS_BEFORE_PR_CLOSE }}일 이내에 "no stale"으로 태그가 지정되거나 다른 활동이 발생하지 않으면 자동으로 닫힐 예정입니다. | ||
해당 PR이 "stale" 상태로 표시되지 않기를 원하면 이 PR에 코멘트를 남겨주세요. | ||
close-pr-message: > | ||
해당 PR은 "stale" 상태로 표시된 후 ${{ env.DAYS_BEFORE_PR_CLOSE }}일 동안 활동이 없어서 자동으로 닫혔어요. | ||
remove-pr-stale-when-updated: true | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,4 +43,4 @@ application*.yml | |
**/static/docs | ||
|
||
### Firebase ### | ||
*firebase*.json | ||
*firebase*.json |
Oops, something went wrong.