-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(ci): introduce initial GitHub actions release flow
A simple release workflow that releases using semantic release.
- Loading branch information
1 parent
06e5128
commit a21144b
Showing
12 changed files
with
9,222 additions
and
2,876 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,55 @@ | ||
{ | ||
"branches": [ | ||
{ | ||
"name": "maintenance/+([0-9])?(.{+([0-9]),x}).x", | ||
"channel": "${name.replace(/^maintenance\\//g, \"\")}" | ||
}, | ||
"main", | ||
{ | ||
"name": "next", | ||
"channel": "next", | ||
"prerelease": true | ||
} | ||
], | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@semantic-release/npm", | ||
{ | ||
"pkgRoot": "dist/commitlint-config" | ||
} | ||
], | ||
[ | ||
"@semantic-release/npm", | ||
{ | ||
"pkgRoot": "dist/eslint-config-angular" | ||
} | ||
], | ||
[ | ||
"@semantic-release/npm", | ||
{ | ||
"pkgRoot": "dist/eslint-config-typescript" | ||
} | ||
], | ||
[ | ||
"@semantic-release/npm", | ||
{ | ||
"pkgRoot": "dist/eslint-plugin-defaultvalue" | ||
} | ||
], | ||
[ | ||
"@semantic-release/npm", | ||
{ | ||
"pkgRoot": "dist/prettier-config" | ||
} | ||
], | ||
[ | ||
"@semantic-release/npm", | ||
{ | ||
"pkgRoot": "dist/stylelint-config-scss" | ||
} | ||
], | ||
"@semantic-release/github" | ||
] | ||
} |
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,3 @@ | ||
This project uses semantic release. | ||
|
||
See [GitHub releases](https://github.com/siemens/lint/releases/) for a changelog. |
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,14 +1,14 @@ | ||
{ | ||
"name": "@siemens/commitlint-config", | ||
"version": "1.2.2", | ||
"version": "0.0.0-development", | ||
"description": "Configuration for commitlint.", | ||
"files": [ | ||
"*.js", | ||
"*.md" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:siemens/lint.git" | ||
"url": "git+ssh://git@github.com/siemens/lint.git" | ||
}, | ||
"author": { | ||
"name": "Siemens", | ||
|
@@ -20,6 +20,9 @@ | |
"siemens", | ||
"lint" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"license": "MIT", | ||
"type": "module", | ||
"peerDependencies": { | ||
|
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,6 +1,6 @@ | ||
{ | ||
"name": "@siemens/eslint-config-angular", | ||
"version": "1.2.2", | ||
"version": "0.0.0-development", | ||
"description": "Configuration for linting Angular TypeScript and templates using Angular ESLint.", | ||
"files": [ | ||
"*.mjs", | ||
|
@@ -14,7 +14,7 @@ | |
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:siemens/lint.git" | ||
"url": "git+ssh://git@github.com/siemens/lint.git" | ||
}, | ||
"author": { | ||
"name": "Siemens", | ||
|
@@ -26,6 +26,9 @@ | |
"siemens", | ||
"lint" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"license": "MIT", | ||
"peerDependencies": { | ||
"@eslint/js": "^9.9.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@siemens/eslint-config-typescript", | ||
"version": "1.2.2", | ||
"version": "0.0.0-development", | ||
"description": "Configuration for linting TypeScript using typescript-eslint.", | ||
"files": [ | ||
"*.mjs", | ||
|
@@ -9,7 +9,7 @@ | |
"main": "./index.mjs", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:siemens/lint.git" | ||
"url": "git+ssh://git@github.com/siemens/lint.git" | ||
}, | ||
"author": { | ||
"name": "Siemens", | ||
|
@@ -21,6 +21,9 @@ | |
"siemens", | ||
"lint" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"license": "MIT", | ||
"peerDependencies": { | ||
"@eslint/js": "^9.9.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"name": "@siemens/eslint-plugin-defaultvalue", | ||
"version": "1.2.2", | ||
"version": "0.0.0-development", | ||
"main": "lib/index.js", | ||
"type": "module", | ||
"description": "Automatically enrich TSDoc comments with default values or check if they are all correct.", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:siemens/lint.git" | ||
"url": "git+ssh://git@github.com/siemens/lint.git" | ||
}, | ||
"author": { | ||
"name": "Siemens", | ||
|
@@ -18,6 +18,9 @@ | |
"siemens", | ||
"lint" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"license": "MIT", | ||
"peerDependencies": { | ||
"eslint": "^8.0.0||^9.0.0", | ||
|
Oops, something went wrong.