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

ci: only validate PR commit messages and remove do not submit check #20011

Merged
merged 1 commit into from Feb 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 6 additions & 4 deletions .circleci/config.yml
Expand Up @@ -167,10 +167,12 @@ jobs:
- custom_attach_workspace
- run:
name: Validate Commit Messages
command: yarn -s admin validate-commits
- run:
name: Validate "do not submit" Commits
command: yarn -s admin validate-do-not-submit
command: >
if [[ -n "${CIRCLE_PR_NUMBER}" ]]; then
yarn -s admin validate-commits
else
echo "This build is not over a PR, nothing to do."
fi
- run:
command: yarn -s admin validate --ci

Expand Down