Skip to content

Commit

Permalink
fix: resolve props of login button
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzhastin-Nikita committed Mar 17, 2022
1 parent 7860ebf commit ce22439
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 23 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -246,25 +246,3 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: npx semantic-release

comment_pr_badge:
timeout-minutes: 5
name: Comment on PR with generated badge
needs: [pre_ci, badge]
if: ${{ github.actor != 'dependabot[bot]' && github.event_name == 'pull_request' && !contains(needs.pre_ci.outputs.commit_message, '#comment-badge') }}

runs-on: ubuntu-latest

steps:
- name: Generate comment file with test coverage badge
env:
BADGE: ${{ needs.badge.outputs.markdown }}
run: |
echo "Badge: ${BADGE}"
echo "${BADGE}" > output.md
- name: Comment PR with test coverage badge
uses: machine-learning-apps/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: output.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ const Template: ComponentStory<typeof LoginButton> = (args) => <LoginButton {...
export const Primary = Template.bind({});

Primary.args = {
text: 'Войти'
text: 'Войти',
color: 'black',
backgroundColor: 'green'
};

0 comments on commit ce22439

Please sign in to comment.