Skip to content

Commit 85e1857

Browse files
authored
docs: remove redundant note on directory exclusion patterns in README (#206)
1 parent 94b880d commit 85e1857

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,16 +193,13 @@ configuring the following optional input parameters as needed.
193193
- Patterns are relative to the workspace directory (no leading slash)
194194
- A pattern like `dir/**` will match files and directories INSIDE `dir` but NOT the `dir` directory itself
195195
- To match both a directory and its contents, you need both patterns: `dir,dir/**`
196-
- To exclude a specific directory and all its contents, use: `path/to/directory,path/to/directory/**`
197196

198197
Example:
199198

200199
```yaml
201200
module-path-ignore: "**/examples/**,**/test/**,root-modules"
202201
```
203202

204-
> **Note**:
205-
206203
- **`module-change-exclude-patterns`**: These patterns determine which file changes are _ignored_ when checking if a
207204
module needs a new release. For example, changes to documentation, examples, or workflow files typically don't require
208205
a new module release.
@@ -294,10 +291,10 @@ jobs:
294291
delete-legacy-tags: true
295292
disable-wiki: false
296293
wiki-sidebar-changelog-max: 10
294+
module-path-ignore: path/to/ignore1,path/to/ignore2
297295
module-change-exclude-patterns: .gitignore,*.md,docs/**,examples/**,*.tftest.hcl,tests/**
298296
module-asset-exclude-patterns: .gitignore,*.md,*.tftest.hcl,tests/**
299297
use-ssh-source-format: false
300-
module-path-ignore: path/to/ignore1,path/to/ignore2
301298
```
302299

303300
## Outputs

0 commit comments

Comments
 (0)