diff --git a/master/contributing/github_workflow/index.html b/master/contributing/github_workflow/index.html index f11e9e57b4..990c5437ec 100644 --- a/master/contributing/github_workflow/index.html +++ b/master/contributing/github_workflow/index.html @@ -956,7 +956,7 @@ Current branch my_feature_branch is up to date.

Commits on your branch should represent meaningful milestones or units of work. Small commits that contain typo fixes, rebases, review feedbacks, etc should be squashed.

To do that, it's best to perform an interactive rebase:

-

Example

+

Example#

If you PR has 3 commits, count backwards from your last commit using HEAD~3:

git rebase -i HEAD~3
 
diff --git a/master/contributing/testing/index.html b/master/contributing/testing/index.html index 8ccdcceb7c..5eaac0ac76 100644 --- a/master/contributing/testing/index.html +++ b/master/contributing/testing/index.html @@ -857,12 +857,12 @@ However, a PR will not be reviewed before all tests are green, so to save time and prevent your PR from going stale, it is best to test it before submitting the PR.

Run Local Verifications#

Please run the following style and formatting commands and fix/check-in any changes:

-

1. Linting

+

1. Linting#

We use ESLing for style verification. In the repository's root directory, simply run:

make lint
 
-

3. Pre-submit Flight Checks

+

3. Pre-submit Flight Checks#

In the repository root directory, make sure that: