From e2d557926c67e07193a2cc22689cc6fa8d9ec8d6 Mon Sep 17 00:00:00 2001 From: Jonghyeon Ko Date: Wed, 15 Oct 2025 12:57:40 +0900 Subject: [PATCH 1/3] ci: update release workflow for package publishing and git configuration --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c162cde..2385479 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,14 +66,14 @@ jobs: run: yarn version patch - name: Publish package - run: yarn npm publish + run: yarn npm publish --provenance --access public env: NODE_OPTIONS: --max-old-space-size=8192 - name: Set git username with email run: | - git config user.name "seungrodotlee" - git config user.email "seungrodotlee@gmail.com" + git config user.name "김윤호 yunho" + git config user.email "kimyouknow9@gmail.com" - name: Tag version run: | From d588c9162c0be454dedfba0d323729f5f74d1638 Mon Sep 17 00:00:00 2001 From: Jonghyeon Ko Date: Wed, 15 Oct 2025 13:03:06 +0900 Subject: [PATCH 2/3] chore: update CODEOWNERS to include new user @kimyouknow --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 0346837..3345907 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @pumpkiinbell @seungrodotlee @choi2021 +* @kimyouknow @pumpkiinbell @choi2021 From fbb4561cf081cda3fe71d414e8fac1f954ae4fce Mon Sep 17 00:00:00 2001 From: Jonghyeon Ko Date: Wed, 15 Oct 2025 13:03:46 +0900 Subject: [PATCH 3/3] chore: update issue templates and release workflow to assign new user @kimyouknow --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/documentation.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- .github/ISSUE_TEMPLATE/other.md | 2 +- .github/workflows/release.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 5f5c76b..de221f9 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -3,7 +3,7 @@ name: Bug Report about: Help us improve react-simplikit by reporting a bug title: '[BUG] ' labels: 'bug' -assignees: 'seungrodotlee, pumpkiinbell, choi2021' +assignees: 'kimyouknow, pumpkiinbell, choi2021' --- **Describe the bug** diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md index 4b362d1..d297c50 100644 --- a/.github/ISSUE_TEMPLATE/documentation.md +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -3,7 +3,7 @@ name: Documentation about: Help us improve react-simplikit's documentation title: '[DOCS] ' labels: 'documentation' -assignees: 'seungrodotlee, pumpkiinbell, choi2021' +assignees: 'kimyouknow, pumpkiinbell, choi2021' --- **Location of the documentation** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index b8d6116..818999e 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -3,7 +3,7 @@ name: Feature Request about: Suggest an idea for react-simplikit title: '[FEATURE] ' labels: 'enhancement' -assignees: 'seungrodotlee, pumpkiinbell, choi2021' +assignees: 'kimyouknow, pumpkiinbell, choi2021' --- **Is your feature request related to a problem? Please describe.** diff --git a/.github/ISSUE_TEMPLATE/other.md b/.github/ISSUE_TEMPLATE/other.md index 2cdb903..e6cf9a7 100644 --- a/.github/ISSUE_TEMPLATE/other.md +++ b/.github/ISSUE_TEMPLATE/other.md @@ -3,7 +3,7 @@ name: Other Issue about: Create a report for issues that don't fit the above templates title: '' labels: 'question' -assignees: 'seungrodotlee, pumpkiinbell, choi2021' +assignees: 'kimyouknow, pumpkiinbell, choi2021' --- **Describe the issue** diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2385479..b14d6d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -147,5 +147,5 @@ jobs: title: 'docs(${{ needs.get-diffs.outputs.result }}): auto-generated docs' body: 'This PR includes documentation updates for: ${{ needs.get-diffs.outputs.result }}' author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> - reviewers: seungrodotlee,pumpkiinbell,choi2021 + reviewers: kimyouknow,pumpkiinbell,choi2021 commit-message: 'Generate docs for ${{ needs.get-diffs.outputs.result }}'