-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add release-please for CHANGELOG management #TSI-1713 (#320)
- Loading branch information
Showing
27 changed files
with
4,792 additions
and
161 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,20 @@ | ||
name: "Check PR title" | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
jobs: | ||
main: | ||
name: Validate PR title | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,83 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
name: Run Release Please | ||
jobs: | ||
release-please-python: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
command: manifest | ||
config-file: release-please/config-python.json | ||
manifest-file: release-please/manifest-python.json | ||
- run: echo "A release was created." | ||
if: ${{ steps.release.outputs.releases_created }} | ||
release-please-java: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
command: manifest | ||
config-file: release-please/config-java.json | ||
manifest-file: release-please/manifest-java.json | ||
- run: echo "A release was created." | ||
if: ${{ steps.release.outputs.releases_created }} | ||
release-please-typescript: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
command: manifest | ||
config-file: release-please/config-typescript.json | ||
manifest-file: release-please/manifest-typescript.json | ||
- run: echo "A release was created." | ||
if: ${{ steps.release.outputs.releases_created }} | ||
release-please-go: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
command: manifest | ||
config-file: release-please/config-go.json | ||
manifest-file: release-please/manifest-go.json | ||
- run: echo "A release was created." | ||
if: ${{ steps.release.outputs.releases_created }} | ||
release-please-cli: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
command: manifest | ||
config-file: release-please/config-cli.json | ||
manifest-file: release-please/manifest-cli.json | ||
- run: echo "A release was created." | ||
if: ${{ steps.release.outputs.releases_created }} | ||
release-please-ruby: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
command: manifest | ||
config-file: release-please/config-ruby.json | ||
manifest-file: release-please/manifest-ruby.json | ||
- run: echo "A release was created." | ||
if: ${{ steps.release.outputs.releases_created }} | ||
release-please-php: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
command: manifest | ||
config-file: release-please/config-php.json | ||
manifest-file: release-please/manifest-php.json | ||
- run: echo "A release was created." | ||
if: ${{ steps.release.outputs.releases_created }} |
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,2 +1,3 @@ | ||
golang 1.19.1 | ||
nodejs 16.13.1 | ||
maven 3.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
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
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 |
---|---|---|
|
@@ -19,3 +19,4 @@ scmDeveloperConnection: scm:git:[email protected]:phrase/openapi.git | |
scmUrl: https://github.com/phrase/openapi | ||
java8: true | ||
dateLibrary: java8 | ||
templateDir: "openapi-generator/templates/java" |
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
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 |
---|---|---|
|
@@ -13,3 +13,4 @@ gemAuthor: Phrase | |
gemAuthorEmail: '[email protected]' | ||
gitUserId: phrase | ||
gitRepoId: phrase-ruby | ||
templateDir: "openapi-generator/templates/ruby-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
Oops, something went wrong.