-
-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testing out auto as a release system (#693)
- Loading branch information
1 parent
fed7d38
commit 39667ec
Showing
11 changed files
with
1,806 additions
and
3,238 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"projectName": "gitbeaker", | ||
"projectOwner": "Justin Dalrymple", | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"files": [ | ||
"README.md" | ||
], | ||
"imageSize": 50, | ||
"commit": false, | ||
"commitConvention": "angular", | ||
"contributors": [], | ||
"contributorsPerLine": 7 | ||
} |
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,55 @@ | ||
plugins: | ||
- npm | ||
- released | ||
- first-time-contributor | ||
- all-contributors | ||
|
||
labels: | ||
- name: breaking | ||
changelogTitle: 💥 Breaking Change | ||
description: Increment the major version when merged | ||
releaseType: major | ||
|
||
- name: feature | ||
changelogTitle: 💥 Feature | ||
description: A new feature addtion | ||
releaseType: minor | ||
|
||
- name: enhancement | ||
changelogTitle: 🚀 Enhancement | ||
description: Increment the minor version when merged | ||
releaseType: minor | ||
|
||
- name: bug | ||
changelogTitle: 🐛 Bug Fix | ||
description: Fixing a minor bug | ||
releaseType: minor | ||
|
||
- name: patch | ||
changelogTitle: 🤷 Misc | ||
description: Increment the patch version when merged | ||
releaseType: patch | ||
|
||
- name: security | ||
changelogTitle: 🏿♀️ Security | ||
description: Changes improve the code security | ||
releaseType: patch | ||
|
||
- name: technical debt | ||
changelogTitle: 👷🏼♀️ Technical Debt | ||
description: Changes that affect the internal code, improving performance/quaility | ||
releaseType: patch | ||
|
||
- name: dependencies | ||
changelogTitle: 🔩 Dependencies | ||
description: Dependencies Updates | ||
releaseType: none | ||
|
||
- name: documentation | ||
changelogTitle: 📝 Documentation | ||
description: Changes only affect the documentation | ||
releaseType: none | ||
|
||
- name: skip-release | ||
description: Preserve the current version when merged | ||
releaseType: skip |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ coverage | |
.rpt2_cache | ||
.idea | ||
.DS_Store | ||
yarn-error.log | ||
yarn-error.log | ||
.env |
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,3 +1,2 @@ | ||
hooks: | ||
pre-commit: 'lint-staged' | ||
commit-msg: 'commitlint -E HUSKY_GIT_PARAMS' |
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
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,17 +1,6 @@ | ||
{ | ||
"packages": ["packages/*"], | ||
"version": "14.2.2", | ||
"npmClient": "yarn", | ||
"useWorkspaces": true, | ||
"tagVersionPrefix": "", | ||
"command": { | ||
"publish": { | ||
"createRelease": "github", | ||
"conventionalCommits": true, | ||
"message": "chore: Release %s" | ||
}, | ||
"version": { | ||
"push": false | ||
} | ||
} | ||
"version": "17.0.1" | ||
} |
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.