File tree Expand file tree Collapse file tree 2 files changed +3
-23
lines changed
digitable-storybook/src/components/atoms/LoginButton Expand file tree Collapse file tree 2 files changed +3
-23
lines changed Original file line number Diff line number Diff line change @@ -246,25 +246,3 @@ jobs:
246
246
NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
247
247
GH_TOKEN : ${{ secrets.GH_TOKEN }}
248
248
run : npx semantic-release
249
-
250
- comment_pr_badge :
251
- timeout-minutes : 5
252
- name : Comment on PR with generated badge
253
- needs : [pre_ci, badge]
254
- if : ${{ github.actor != 'dependabot[bot]' && github.event_name == 'pull_request' && !contains(needs.pre_ci.outputs.commit_message, '#comment-badge') }}
255
-
256
- runs-on : ubuntu-latest
257
-
258
- steps :
259
- - name : Generate comment file with test coverage badge
260
- env :
261
- BADGE : ${{ needs.badge.outputs.markdown }}
262
- run : |
263
- echo "Badge: ${BADGE}"
264
- echo "${BADGE}" > output.md
265
- - name : Comment PR with test coverage badge
266
- uses :
machine-learning-apps/[email protected]
267
- env :
268
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
269
- with :
270
- path : output.md
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ const Template: ComponentStory<typeof LoginButton> = (args) => <LoginButton {...
13
13
export const Primary = Template . bind ( { } ) ;
14
14
15
15
Primary . args = {
16
- text : 'Войти'
16
+ text : 'Войти' ,
17
+ color : 'black' ,
18
+ backgroundColor : 'green'
17
19
} ;
18
20
You can’t perform that action at this time.
0 commit comments