From 7891439f88a9cb9c231b7c1fcbcdfb0cf2cb6e02 Mon Sep 17 00:00:00 2001 From: Jonghyeon Ko Date: Wed, 15 Oct 2025 13:30:30 +0900 Subject: [PATCH 1/2] chore: update CODEOWNERS and issue templates to assign only 'kimyouknow' --- .github/CODEOWNERS | 2 +- .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 | 4 +--- 6 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 3345907..236518e 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @kimyouknow @pumpkiinbell @choi2021 +* @kimyouknow diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index de221f9..338b3e7 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: 'kimyouknow, pumpkiinbell, choi2021' +assignees: 'kimyouknow' --- **Describe the bug** diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md index d297c50..3446585 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: 'kimyouknow, pumpkiinbell, choi2021' +assignees: 'kimyouknow' --- **Location of the documentation** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 818999e..62a70cf 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: 'kimyouknow, pumpkiinbell, choi2021' +assignees: 'kimyouknow' --- **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 e6cf9a7..559b2b3 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: 'kimyouknow, pumpkiinbell, choi2021' +assignees: 'kimyouknow' --- **Describe the issue** diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d598243..cf1064c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,8 +44,6 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - with: - token: ${{ secrets.TOSS_REACTIVE_KIT_GITHUB_ACCESS_TOKEN }} - name: Enable Corepack run: corepack enable @@ -147,5 +145,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: kimyouknow,pumpkiinbell,choi2021 + reviewers: kimyouknow commit-message: 'Generate docs for ${{ needs.get-diffs.outputs.result }}' From 63cbf65787dda6da21b7ba66ef570adffae740f6 Mon Sep 17 00:00:00 2001 From: Jonghyeon Ko Date: Wed, 15 Oct 2025 13:31:27 +0900 Subject: [PATCH 2/2] ci: update release workflow to include itself in the file changes --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cf1064c..bdb251c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: - 'src/**/*.ts' - 'src/**/*.tsx' - 'tsup.config.ts' - - 'package.json' + - '.github/workflows/release.yml' release: runs-on: ubuntu-latest