Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…B-CLIENT into develop
  • Loading branch information
seturi committed Nov 19, 2024
2 parents 9d7a094 + b82e9a8 commit 8c07e30
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# labeler "full" schema

# enable labeler on issues, prs, or both.
enable:
issues: true
prs: true
# comments object allows you to specify a different message for issues and prs

comments:
issues: |
라벨 지정 제대로 되었는지 체크 한 번씩 하기 🧞‍♂️ 작업도 화이팅 !!!!!!! 😍
prs: |
라벨 지정 제대로 되었는지 체크 한 번씩 하기 🧞‍♂️ 고생했어요 다음 작업도 화이팅 !!!!!! 😍
# Labels is an object where:
# - keys are labels
# - values are objects of { include: [ pattern ], exclude: [ pattern ] }
# - pattern must be a valid regex, and is applied globally to
# title + description of issues and/or prs (see enabled config above)
# - 'include' patterns will associate a label if any of these patterns match
# - 'exclude' patterns will ignore this label if any of these patterns match
labels:
':tada: init':
include:
- '\binit\b'
':sparkles: feat':
include:
- '\bfeat\b'
':bug: fix':
include:
- '\bfix\b'
':package: chore':
include:
- '\bchore\b'
':recycle: refactor':
include:
- '\brefactor\b'
':lipstick: design':
include:
- '\bdesign\b'
':ambulance: hotfix':
include:
- '\bhotfix\b'
':memo: docs':
include:
- '\bdocs\b'
21 changes: 21 additions & 0 deletions .github/workflows/autoLabeling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: PR labeler

on:
issues:
types: [opened]
pull_request:
types: [opened]

jobs:
labeler:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
pull-requests: write
steps:
- name: Check Labels
id: labeler
uses: jimschubert/labeler-action@v1
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
8 changes: 8 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"rewrites": [{ "source": "/(.*)", "destination": "/" }],
"build": {
"env": {
"YARN_ENABLE_IMMUTABLE_INSTALLS": "false"
}
}
}

0 comments on commit 8c07e30

Please sign in to comment.