-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release please setup and configuration
Signed-off-by: Weinfurtner Jared (BD/SIX-EU) <[email protected]>
- Loading branch information
1 parent
8ffab9c
commit b5e8772
Showing
7 changed files
with
61 additions
and
2 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,21 @@ | ||
# | ||
# Copyright (c) 2023 - for information on the respective copyright owner | ||
# see the NOTICE file and/or the repository https://github.com/carbynestack/java-http-client. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
name: Release | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
release-please: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Release Please | ||
uses: google-github-actions/release-please-action@v3 | ||
with: | ||
command: manifest | ||
signoff: "cs-minion <[email protected]>" | ||
token: ${{ secrets.CS_MINION_PAT }} |
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,3 @@ | ||
{ | ||
".": "0.1.0" | ||
} |
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 @@ | ||
/* | ||
* Copyright (c) 2023 - for information on the respective copyright owner | ||
* see the NOTICE file and/or the repository https://github.com/carbynestack/java-http-client. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
module.exports = { | ||
extends: ["@commitlint/config-conventional"], | ||
rules: { | ||
"scope-empty": [0, "never"], | ||
"scope-enum": [2, "always", ["java-http-client"]], | ||
}, | ||
}; |
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 @@ | ||
{ | ||
"bump-minor-pre-major": true, | ||
"separate-pull-requests": true, | ||
"pull-request-title-pattern": "chore: release ${component} ${version}", | ||
"pull-request-header": ":package: Staging a new release", | ||
"packages": { | ||
".": { | ||
"package-name": "java-http-client", | ||
"release-type": "maven", | ||
"skip-snapshot": true | ||
} | ||
} | ||
} |