Fix globbing, update metadata, update ncc (#4)

* Enable minimatch dot option
It's not a default globbing behavior, however for our use-case is much more convenient to match those files.

* Update README and package.json
This commit is contained in:
Michal Dorner 2020-05-21 13:46:48 +02:00 committed by GitHub
parent f9b6173f5e
commit 29d498d99d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 157 additions and 129 deletions

View file

@ -30,6 +30,10 @@ Output variables can be later used in the `if` clause to conditionally run speci
- `'false'` - if **none** of changed files matches any of rule patterns
### Notes
- minimatch [dot](https://www.npmjs.com/package/minimatch#dot) option is set to true - therefore
globbing will match also paths where file or folder name starts with a dot.
### Sample workflow
```yaml
...
@ -94,4 +98,4 @@ jobs:
- [Changed File Filter](https://github.com/tony84727/changed-file-filter)
- allows change detection between any refs or commits
- fetches whole history of your git repository
- might have negative performance impact on big repositories (github by default fetches only single commit)
- might have negative performance impact on big repositories (github by default fetches only single commit)