Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Happo automation should skip dependabot PRs #453

Merged
merged 8 commits into from
Sep 14, 2020
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