From b6897f4c20d6883c578f99d2ca0922f1f590ed35 Mon Sep 17 00:00:00 2001 From: Lucas Alves Date: Tue, 4 May 2021 22:20:58 -0300 Subject: [PATCH] Fix formatting in article About Status Checks (#6027) Co-authored-by: Sarah Edwards --- .../about-status-checks.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/content/github/collaborating-with-issues-and-pull-requests/about-status-checks.md b/content/github/collaborating-with-issues-and-pull-requests/about-status-checks.md index 4948fdd1d95b..0e5d20d58ea7 100644 --- a/content/github/collaborating-with-issues-and-pull-requests/about-status-checks.md +++ b/content/github/collaborating-with-issues-and-pull-requests/about-status-checks.md @@ -53,18 +53,18 @@ When a repository is set to automatically request checks for pushes, you can cho To skip or request checks for your commit, add one of the following trailer lines to the end of your commit message: -- To _skip checks_ for a commit, type your commit message and a short, meaningful description of your changes. After your commit description, instead of a closing quotation, add two empty lines followed by `skip-checks: true`: +- To _skip checks_ for a commit, type your commit message and a short, meaningful description of your changes. After your commit description, before the closing quotation, add two empty lines followed by `skip-checks: true`: ```shell - $ git commit -m "Update README. + $ git commit -m "Update README > > - skip-checks: true + skip-checks: true" ``` - - To _request_ checks for a commit, type your commit message and a short, meaningful description of your changes. After your commit description, instead of a closing quotation, add two empty lines followed by `request-checks: true`: +- To _request_ checks for a commit, type your commit message and a short, meaningful description of your changes. After your commit description, before the closing quotation, add two empty lines followed by `request-checks: true`: ```shell - $ git commit -m "Refactor usability tests. + $ git commit -m "Refactor usability tests > > - request-checks: true + request-checks: true" ```