Skip to content

Conversation

@manudeli
Copy link
Member

No description provided.

Copilot AI review requested due to automatic review settings October 15, 2025 03:58
@github-actions
Copy link
Contributor

github-actions bot commented Oct 15, 2025

Size Change: 0 B

Total Size: 65.5 kB

ℹ️ View Unchanged
Filename Size
./dist/components/ImpressionArea/index.cjs 2.24 kB
./dist/components/Separated/index.cjs 715 B
./dist/components/SwitchCase/index.cjs 587 B
./dist/hooks/useAsyncEffect/index.cjs 610 B
./dist/hooks/useBooleanState/index.cjs 661 B
./dist/hooks/useCallbackOncePerRender/index.cjs 731 B
./dist/hooks/useConditionalEffect/index.cjs 784 B
./dist/hooks/useControlledState/index.cjs 791 B
./dist/hooks/useCounter/index.cjs 848 B
./dist/hooks/useDebounce/index.cjs 1.13 kB
./dist/hooks/useDebouncedCallback/index.cjs 1.26 kB
./dist/hooks/useDoubleClick/index.cjs 861 B
./dist/hooks/useGeolocation/index.cjs 1.43 kB
./dist/hooks/useImpressionRef/index.cjs 1.96 kB
./dist/hooks/useInputState/index.cjs 676 B
./dist/hooks/useIntersectionObserver/index.cjs 952 B
./dist/hooks/useInterval/index.cjs 816 B
./dist/hooks/useIsomorphicLayoutEffect/index.cjs 587 B
./dist/hooks/useLoading/index.cjs 782 B
./dist/hooks/useLongPress/index.cjs 1.3 kB
./dist/hooks/useMap/index.cjs 925 B
./dist/hooks/useOutsideClickEffect/index.cjs 850 B
./dist/hooks/usePreservedCallback/index.cjs 630 B
./dist/hooks/usePreservedReference/index.cjs 679 B
./dist/hooks/usePrevious/index.cjs 682 B
./dist/hooks/useRefEffect/index.cjs 811 B
./dist/hooks/useStorageState/index.cjs 1.67 kB
./dist/hooks/useThrottle/index.cjs 1.32 kB
./dist/hooks/useTimeout/index.cjs 718 B
./dist/hooks/useToggle/index.cjs 585 B
./dist/hooks/useVisibilityEvent/index.cjs 698 B
./dist/index.cjs 8.39 kB
./dist/utils/buildContext/index.cjs 877 B
./dist/utils/mergeProps/index.cjs 786 B
./dist/utils/mergeRefs/index.cjs 593 B
./esm/components/ImpressionArea/index.js 1.85 kB
./esm/components/Separated/index.js 307 B
./esm/components/SwitchCase/index.js 183 B
./esm/hooks/useAsyncEffect/index.js 193 B
./esm/hooks/useBooleanState/index.js 247 B
./esm/hooks/useCallbackOncePerRender/index.js 322 B
./esm/hooks/useConditionalEffect/index.js 367 B
./esm/hooks/useControlledState/index.js 398 B
./esm/hooks/useCounter/index.js 449 B
./esm/hooks/useDebounce/index.js 722 B
./esm/hooks/useDebouncedCallback/index.js 864 B
./esm/hooks/useDoubleClick/index.js 462 B
./esm/hooks/useGeolocation/index.js 1.03 kB
./esm/hooks/useImpressionRef/index.js 1.57 kB
./esm/hooks/useInputState/index.js 266 B
./esm/hooks/useIntersectionObserver/index.js 546 B
./esm/hooks/useInterval/index.js 411 B
./esm/hooks/useIsomorphicLayoutEffect/index.js 170 B
./esm/hooks/useLoading/index.js 373 B
./esm/hooks/useLongPress/index.js 885 B
./esm/hooks/useMap/index.js 525 B
./esm/hooks/useOutsideClickEffect/index.js 443 B
./esm/hooks/usePreservedCallback/index.js 216 B
./esm/hooks/usePreservedReference/index.js 272 B
./esm/hooks/usePrevious/index.js 268 B
./esm/hooks/useRefEffect/index.js 412 B
./esm/hooks/useStorageState/index.js 1.3 kB
./esm/hooks/useThrottle/index.js 922 B
./esm/hooks/useTimeout/index.js 311 B
./esm/hooks/useToggle/index.js 169 B
./esm/hooks/useVisibilityEvent/index.js 294 B
./esm/index.js 7.81 kB
./esm/utils/buildContext/index.js 463 B
./esm/utils/mergeProps/index.js 403 B
./esm/utils/mergeRefs/index.js 191 B

compressed-size-action

@manudeli manudeli requested a review from kimyouknow October 15, 2025 03:59
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

Enable OIDC/npm provenance on package publish and change the Git author used for tagging in the release workflow.

  • Add npm provenance and public access flags to the publish step.
  • Update git user.name and user.email used by the workflow before tagging.

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

Comment on lines +75 to +76
git config user.name "김윤호 yunho"
git config user.email "kimyouknow9@gmail.com"
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.

Avoid hard-coding a personal name/email in CI. It exposes personal information in build logs/artifacts and causes tags/commits to be authored under a human identity. Prefer using the GitHub Actions bot identity or derive from the workflow actor with a noreply address. For example:

git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"

or:

git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"

Suggested change
git config user.name "김윤호 yunho"
git config user.email "kimyouknow9@gmail.com"
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"

Copilot uses AI. Check for mistakes.
kimyouknow
kimyouknow previously approved these changes Oct 15, 2025
@kimyouknow kimyouknow merged commit 3007ce7 into main Oct 15, 2025
10 checks passed
@kimyouknow kimyouknow deleted the ci/oidc-3 branch October 15, 2025 04:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants