Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: minor hint regarding glob notation #285

Merged
merged 6 commits into from Dec 21, 2022
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Expand Up @@ -56,6 +56,11 @@ label1:

# Add 'label2' to any file changes within 'example2' folder
label2: example2/*

# Add label3 to any .txt file changes in the entire repository, ' are mandatory for leading *
Gornoka marked this conversation as resolved.
Show resolved Hide resolved
label3:
- '**/*.txt'

```

#### Common Examples
Expand Down