-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(lib): Support mapping a column to multiple columns (#189)
* feat(lib): Support mapping a column to multiple columns Extremely useful for classification. * test(lib): Resolve flattening test flakiness * ci(config): Integrate with Mergeable * ci(config): Integrate with Dependabot * build(deps-dev): Fix security issues * docs(lib): Add flatten to advanced usage example
- Loading branch information
Showing
18 changed files
with
672 additions
and
3,098 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: 2 | ||
updates: | ||
# Fetch and update latest `npm` packages | ||
- package-ecosystem: npm | ||
directory: '/' | ||
schedule: | ||
interval: daily | ||
time: '00:00' | ||
open-pull-requests-limit: 10 | ||
reviewers: | ||
- isair | ||
assignees: | ||
- isair |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
version: 2 | ||
mergeable: | ||
- when: pull_request.* | ||
validate: | ||
- do: assignee | ||
min: | ||
count: 1 | ||
- do: approvals | ||
min: | ||
count: 1 | ||
block: | ||
changes_requested: true | ||
- do: title | ||
must_include: | ||
regex: '^[a-z]+\([a-z-]+\): [A-Z]{1}(.+)$' | ||
- do: dependent | ||
changed: | ||
file: 'package.json' | ||
required: ['package-lock.json'] | ||
|
||
- when: schedule.repository | ||
validate: | ||
- do: stale | ||
days: 20 | ||
type: pull_request, issues | ||
pass: | ||
- do: comment | ||
payload: | ||
body: This is old. Is it still relevant? | ||
|
||
- when: pull_request.*, pull_request_review.*, status.*, check_suite.* | ||
name: 'Automatically merge pull requests once it passes all checks' | ||
validate: [] | ||
pass: | ||
- do: merge | ||
merge_method: 'squash' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
test,headers,should,fail |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ module.exports = [ | |
'github', | ||
'script', | ||
'deps', | ||
'dev-deps', | ||
'deps-dev', | ||
'asset', | ||
'lib', | ||
'release', | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.