-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix .editorconfig and apply code-style (#322)
- Loading branch information
Showing
58 changed files
with
2,090 additions
and
1,162 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,59 @@ | ||
{ | ||
"max_tags_to_fetch": 200, | ||
"max_pull_requests": 200, | ||
"max_back_track_time_days": 365, | ||
"exclude_merge_branches": [], | ||
"sort": "ASC", | ||
"template": "${{CHANGELOG}}", | ||
"pr_template": "* ${{TITLE}} by @${{AUTHOR}} (#${{NUMBER}})", | ||
"empty_template": "- no changes", | ||
"categories": [ | ||
"max_tags_to_fetch" : 200, | ||
"max_pull_requests" : 200, | ||
"max_back_track_time_days" : 365, | ||
"exclude_merge_branches" : [], | ||
"sort" : "ASC", | ||
"template" : "${{CHANGELOG}}", | ||
"pr_template" : "* ${{TITLE}} by @${{AUTHOR}} (#${{NUMBER}})", | ||
"empty_template" : "- no changes", | ||
"categories" : [ | ||
{ | ||
"title": "## Features", | ||
"labels": ["feature", "enhancement"] | ||
"title" : "## Features", | ||
"labels" : [ | ||
"feature", | ||
"enhancement" | ||
] | ||
}, | ||
{ | ||
"title": "## API-Alignment\n\nAdjust API to match as much as possible to the one of [@neo4j/graphql](https://github.com/neo4j/graphql)", | ||
"labels": ["API-Alignment"] | ||
"title" : "## API-Alignment\n\nAdjust API to match as much as possible to the one of [@neo4j/graphql](https://github.com/neo4j/graphql)", | ||
"labels" : [ | ||
"API-Alignment" | ||
] | ||
}, | ||
{ | ||
"title": "## Fixes", | ||
"labels": ["fix"] | ||
"title" : "## Fixes", | ||
"labels" : [ | ||
"fix" | ||
] | ||
}, | ||
{ | ||
"title": "## Documentation", | ||
"labels": ["doc"] | ||
"title" : "## Documentation", | ||
"labels" : [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"title": "## Tests", | ||
"labels": ["test"] | ||
"title" : "## Tests", | ||
"labels" : [ | ||
"test" | ||
] | ||
}, | ||
{ | ||
"title": "## Updated dependencies", | ||
"labels": ["dependencies"] | ||
"title" : "## Updated dependencies", | ||
"labels" : [ | ||
"dependencies" | ||
] | ||
} | ||
], | ||
"ignore_labels": [ | ||
"ignore_labels" : [ | ||
"ignore" | ||
], | ||
"label_extractor": [ ], | ||
"duplicate_filter": null, | ||
"transformers": [], | ||
"tag_resolver": { | ||
"method": "semver" | ||
"label_extractor" : [], | ||
"duplicate_filter" : null, | ||
"transformers" : [], | ||
"tag_resolver" : { | ||
"method" : "semver" | ||
}, | ||
"base_branches": [] | ||
"base_branches" : [] | ||
} |
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 |
---|---|---|
|
@@ -11,15 +11,15 @@ jobs: | |
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
with : | ||
fetch-depth : 0 | ||
- name : Build Changelog | ||
id : build_changelog | ||
uses : mikepenz/release-changelog-builder-action@v1 | ||
with : | ||
configuration : ".github/workflows/changelog-configuration.json" | ||
env : | ||
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
fetch-depth: 0 | ||
- name: Build Changelog | ||
id: build_changelog | ||
uses: mikepenz/release-changelog-builder-action@v1 | ||
with: | ||
configuration: ".github/workflows/changelog-configuration.json" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: update release | ||
id: update_release | ||
uses: tubone24/[email protected] | ||
|
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
Oops, something went wrong.