Commit 43ee40d3 authored by Dan Plumbley's avatar Dan Plumbley Committed by Ian Ernst
Browse files

Resolve "ILT - Lab Update - GitLab Compliance Essentials - Minor Lab Updates"

parent 84a99e4d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ Learners will review the different roles and user permissions in their GitLab pr

1. Leave all other as default and select **Create project**.

1. Using the breadcrumbs at the top of the page, select the option starting with `My Test Group` to navigate to your ILT instance group.
1. Using the breadcrumbs at the top of the page, select the option starting with `GROUP` to navigate to your ILT instance group.

1. In the left sidebar select **Manage > Members**.

+7 −1
Original line number Diff line number Diff line
@@ -19,7 +19,13 @@ In this task, you will enable push rules in your repository to ensure that pushe

    > For this example, we want to ensure that every commit is targeted towards an issue in the project. Having the issue ID present in the commit message ensures that all activity related to the issue is logged in the issue. To do this, we can enforce an expression to ensure every commit message contains either an epic or an issue ID.

1. In the **Require expression in commit messages**, add the regular expression: `^.*(#\d+|&\d+).*`. The regular expression will match the string based on the pattern:
1. In the **Require expression in commit messages**, add the following regular expression:

    ```regex
    ^.*(#\d+|&\d+).*
    ```

    The regular expression will match the string based on the pattern:

    - ^ - Matches the start of the string
    - .* - Matches any character (except newline) zero or more times