Skip to content

Commit

Permalink
Fix GH action so we run chromatic on all non-dependabot PRs.
Browse files Browse the repository at this point in the history
  • Loading branch information
philschoefer committed Nov 30, 2023
1 parent fcbd1a0 commit 312cc80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: push
jobs:
chromatic:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
continue-on-error: true
steps:
- name: Checkout 🛎️
Expand Down
4 changes: 3 additions & 1 deletion packages/polaris-viz/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased

- Added experimental feature to define a `fillValue` for a `DataSeries` which Polaris Viz will use to backfill missing data points
### Added

- Experimental feature to define a `fillValue` for a `DataSeries` which Polaris Viz will use to backfill missing data points

## [10.0.1] - 2023-11-16

Expand Down

0 comments on commit 312cc80

Please sign in to comment.