Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ workflows:
- build_docs_pf4
- deploy_prerelease:
requires:
- lint_pf4
- test_jest_pf4
- test_integration
- build_docs_pf4
Expand Down Expand Up @@ -221,7 +222,7 @@ jobs:
name: Breaking Change Lint
# https://github.com/angular/angular/blob/master/CONTRIBUTING.md#commit
command: |
if git log origin/master..HEAD --format="%b" | grep -i "breaking change";
if git log origin/${CIRCLE_BRANCH}..HEAD --format="%b" | grep -i "breaking change";
then
echo "Breaking change above detected"
exit 1
Expand Down