Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @kimyouknow @pumpkiinbell @choi2021
* @kimyouknow
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.**
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/other.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- 'src/**/*.ts'
- 'src/**/*.tsx'
- 'tsup.config.ts'
- 'package.json'
- '.github/workflows/release.yml'
Copy link

Copilot AI Oct 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding the workflow file itself to the file monitoring list could create recursive triggers. Consider whether changes to the release workflow should trigger a new release, as this might cause unintended build cycles.

Suggested change
- '.github/workflows/release.yml'

Copilot uses AI. Check for mistakes.

release:
runs-on: ubuntu-latest
Expand All @@ -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
Expand Down Expand Up @@ -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 }}'
Loading