Skip to content

Commit

Permalink
fix: Happo automation should skip dependabot PRs (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
haworku authored Sep 14, 2020
1 parent ee7770d commit dc5bffc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- run:
name: 'Happo'
command: '[[ ( "${CIRCLE_PR_USERNAME}" != "github" ) ]] && yarn happo-ci'
command: '[[ -n "${CIRCLE_USERNAME}" ]] && yarn happo-ci'
environment:
HAPPO_IS_ASYNC: 'true'
BASE_BRANCH: 'origin/main'
Expand Down
11 changes: 10 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ updates:
directory: '/'
schedule:
interval: weekly
time: '6:00'
time: '06:00'
timezone: PST8PDT
pull-request-branch-name:
separator: '-'
Expand All @@ -27,6 +27,15 @@ updates:
- dependency-name: '@types/react-dom'
versions:
- '^16.10.0'
- dependency-name: '@storybook/react'
versions:
- '^6.0.12'
- dependency-name: '@storybook/addon-docs'
versions:
- '^6.0.12'
- dependency-name: '@storybook/addon-viewport'
versions:
- '^6.0.12'

- package-ecosystem: npm
directory: '/example/'
Expand Down

0 comments on commit dc5bffc

Please sign in to comment.