From e4c0b49fc6e879146a13cd631aa8d049da2a5f8a Mon Sep 17 00:00:00 2001 From: Bruno Ferreira Date: Fri, 5 Nov 2021 09:27:00 +0000 Subject: [PATCH] update documentation with the new AllowedRegexpPrefixes config --- runatlantis.io/docs/repo-level-atlantis-yaml.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runatlantis.io/docs/repo-level-atlantis-yaml.md b/runatlantis.io/docs/repo-level-atlantis-yaml.md index 4b41068e82..7546f432a6 100644 --- a/runatlantis.io/docs/repo-level-atlantis-yaml.md +++ b/runatlantis.io/docs/repo-level-atlantis-yaml.md @@ -71,6 +71,9 @@ workflows: steps: - run: echo hi - apply +allowed_regexp_prefixes: +- dev/ +- staging/ ``` ## Use Cases @@ -194,6 +197,7 @@ automerge: delete_source_branch_on_merge: projects: workflows: +allowed_regexp_prefixes: ``` | Key | Type | Default | Required | Description | |-------------------------------|----------------------------------------------------------|---------|----------|-------------------------------------------------------------| @@ -202,6 +206,7 @@ workflows: | delete_source_branch_on_merge | bool | `false` | no | Automatically deletes the source branch on merge | | projects | array[[Project](repo-level-atlantis-yaml.html#project)] | `[]` | no | Lists the projects in this repo | | workflows
*(restricted)* | map[string: [Workflow](custom-workflows.html#reference)] | `{}` | no | Custom workflows | +| allowed_regexp_prefixes | array[string] | `[]` | no | Lists the allowed regexp prefixes to use when the [`--enable-regexp-cmd`](server-configuration.html#enable-regexp-cmd) flag is used ### Project ```yaml