File tree Expand file tree Collapse file tree 4 files changed +80
-0
lines changed
reference/react-dom/hooks Expand file tree Collapse file tree 4 files changed +80
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Discord Notify
2+
3+ on :
4+ pull_request_target :
5+ types : [opened, ready_for_review]
6+
7+ permissions : {}
8+
9+ jobs :
10+ check_maintainer :
11+ uses : facebook/react/.github/workflows/shared_check_maintainer.yml@main
12+ permissions :
13+ # Used by check_maintainer
14+ contents : read
15+ with :
16+ actor : ${{ github.event.pull_request.user.login }}
17+
18+ notify :
19+ if : ${{ needs.check_maintainer.outputs.is_core_team == 'true' }}
20+ needs : check_maintainer
21+ runs-on : ubuntu-latest
22+ steps :
23+ - name : Discord Webhook Action
24+ uses : tsickert/discord-webhook@v6.0.0
25+ with :
26+ webhook-url : ${{ secrets.DISCORD_WEBHOOK_URL }}
27+ embed-author-name : ${{ github.event.pull_request.user.login }}
28+ embed-author-url : ${{ github.event.pull_request.user.html_url }}
29+ embed-author-icon-url : ${{ github.event.pull_request.user.avatar_url }}
30+ embed-title : ' #${{ github.event.number }} (+${{github.event.pull_request.additions}} -${{github.event.pull_request.deletions}}): ${{ github.event.pull_request.title }}'
31+ embed-description : ${{ github.event.pull_request.body }}
32+ embed-url : ${{ github.event.pull_request.html_url }}
Original file line number Diff line number Diff line change 1+ name : Label Core Team PRs
2+
3+ on :
4+ pull_request_target :
5+
6+ permissions : {}
7+
8+ env :
9+ TZ : /usr/share/zoneinfo/America/Los_Angeles
10+ # https://github.com/actions/cache/blob/main/tips-and-workarounds.md#cache-segment-restore-timeout
11+ SEGMENT_DOWNLOAD_TIMEOUT_MINS : 1
12+
13+ jobs :
14+ check_maintainer :
15+ uses : facebook/react/.github/workflows/shared_check_maintainer.yml@main
16+ permissions :
17+ # Used by check_maintainer
18+ contents : read
19+ with :
20+ actor : ${{ github.event.pull_request.user.login }}
21+
22+ label :
23+ if : ${{ needs.check_maintainer.outputs.is_core_team == 'true' }}
24+ runs-on : ubuntu-latest
25+ needs : check_maintainer
26+ permissions :
27+ # Used to add labels on issues
28+ issues : write
29+ # Used to add labels on PRs
30+ pull-requests : write
31+ steps :
32+ - name : Label PR as React Core Team
33+ uses : actions/github-script@v7
34+ with :
35+ script : |
36+ github.rest.issues.addLabels({
37+ owner: context.repo.owner,
38+ repo: context.repo.repo,
39+ issue_number: ${{ github.event.number }},
40+ labels: ['React Core Team']
41+ });
Original file line number Diff line number Diff line change @@ -47,6 +47,9 @@ Do you have a local React.js meetup? Add it here! (Please keep the list alphabet
4747## Colombia {/* colombia* /}
4848* [ Medellin] ( https://www.meetup.com/React-Medellin/ )
4949
50+ ## Czechia {/* czechia* /}
51+ * [ Prague] ( https://guild.host/react-prague/ )
52+
5053## Denmark {/* denmark* /}
5154* [ Aalborg] ( https://www.meetup.com/Aalborg-React-React-Native-Meetup/ )
5255* [ Aarhus] ( https://www.meetup.com/Aarhus-ReactJS-Meetup/ )
Original file line number Diff line number Diff line change @@ -14,7 +14,11 @@ title: "Built-in React DOM Hooks"
1414
1515* 폼* 은 정보 제출을 위한 상호 작용형 제어를 만들 수 있도록 해줍니다. 컴포넌트에 있는 폼을 관리하기 위해 다음과 같은 Hook 중 하나를 사용할 수 있습니다.
1616
17+ <<<<<<< HEAD
1718* [ ` useFormStatus ` ] ( /reference/react-dom/hooks/useFormStatus ) 폼의 상태에 따라 UI를 업데이트할 수 있게 해줍니다.
19+ =======
20+ * [ ` useFormStatus ` ] ( /reference/react-dom/hooks/useFormStatus ) allows you to make updates to the UI based on the status of a form.
21+ >>>>>>> 2859efa07357dfc2927517ce9765515acf903c7c
1822
1923``` js
2024function Form ({ action }) {
You can’t perform that action at this time.
0 commit comments