Skip to content

Commit

Permalink
Merge pull request #3 from byzantine-fault/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
thyoondev authored Nov 28, 2023
2 parents 1baf168 + 106da5c commit 49f60da
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 16 deletions.
31 changes: 16 additions & 15 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler

name: Labeler
on: [pull_request_target]
# workflow 의 이름
name: PR labeler

# 트리거될 이벤트 설정
on:
pull_request:
types: [opened]

# 트리거되었을 때 실행될 job 작성
jobs:
label:

labeler:
# runner 설정
runs-on: ubuntu-latest
# 리파지토리에 대한 권한 설정
permissions:
contents: read
pull-requests: write

steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Check Labels
id: labeler
uses: jimschubert/labeler-action@v1
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
31 changes: 31 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# enable labeler on issues, prs, or both.
enable:
issues: false
prs: true

# 레이블을 성공적으로 붙이고 PR에 보낼 코멘트를 설정
comments:
prs: |
Labeler has applied any labels matching special text in your title and description.
Please review the labels and make any necessary changes.
# 레이블
labels:
'bug':
include:
- '\bfix\b'
'test':
include:
- '\btest\b'
'feature':
include:
- '\bfeat\b'
'documentation':
include:
- '\bdocs\b'
'refactor':
include:
- '\brefactor\b'
'chore':
include:
- '\bchore\b'
2 changes: 1 addition & 1 deletion src/context/Web3Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const projectId = "484ba4de0a4e19e8c1c8d5b289e9631c";
// 2. Create wagmiConfig
const metadata = {
name: "ChatSwap",
description: "ChatSwap",
description: "ChatSwap ",
url: "https://chatswap.vercel.app",
icons: ["https://avatars.githubusercontent.com/u/37784886"],
};
Expand Down

0 comments on commit 49f60da

Please sign in to comment.