diff --git a/.github/workflows/sync-open-source.yaml b/.github/workflows/sync-open-source.yaml index f1c93bca..d822ce67 100644 --- a/.github/workflows/sync-open-source.yaml +++ b/.github/workflows/sync-open-source.yaml @@ -14,6 +14,13 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Get last commit author email + id: get_email + run: echo "COMMIT_AUTHOR_EMAIL=$(git log -n 1 --pretty=format:%ae)" >> $GITHUB_ENV + + - name: Test author email + run: echo "The commit author email is $COMMIT_AUTHOR_EMAIL" + - uses: cpina/github-action-push-to-another-repository@main env: SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} @@ -24,6 +31,8 @@ jobs: destination-repository-name: "open-source" target-branch: ${{ github.head_ref }} create-target-branch-if-needed: true + user-name: ${{ github.event.pull_request.user.login }} + user-email: ${{ env.COMMIT_AUTHOR_EMAIL }} # https://github.com/orgs/community/discussions/25191 commit-message: See ${{github.repository}}@${{ github.event.pull_request.head.sha }} diff --git a/web/apps/storybook/src/stories/Button.tsx b/web/apps/storybook/src/stories/Button.tsx index 5c4a7e8f..91476b03 100644 --- a/web/apps/storybook/src/stories/Button.tsx +++ b/web/apps/storybook/src/stories/Button.tsx @@ -18,7 +18,7 @@ export interface ButtonProps { /** Primary UI component for user interaction */ export const Button = ({ primary = false, - size = 'medium', + size = 'large', backgroundColor, label, ...props