docs: minor hint regarding glob notation (#285)

This commit is contained in:
Lukas Hennies
2022-12-21 15:59:36 +01:00
committed by GitHub
parent 34b1b365e1
commit f7b1827ed3

View File

@@ -56,6 +56,11 @@ label1:
# Add 'label2' to any file changes within 'example2' folder
label2: example2/*
# Add label3 to any change to .txt files within the entire repository. Quotation marks are required for the leading asterisk
label3:
- '**/*.txt'
```
#### Common Examples