Skip to content

Commit

Permalink
Merge branch '1-bug-fixes-and-improvements-0918' of github.com:myshel…
Browse files Browse the repository at this point in the history
…l-ai/ShellAgent into 1-bug-fixes-and-improvements-0918
  • Loading branch information
myshell-joe committed Sep 19, 2024
2 parents 4d52b82 + 0e72941 commit c4d7acd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/sync-open-source.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion web/apps/storybook/src/stories/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c4d7acd

Please sign in to comment.