Skip to content

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelromcar-parabol committed Oct 23, 2023
2 parents fb92a39 + 0104d00 commit e6b3165
Show file tree
Hide file tree
Showing 10 changed files with 84 additions and 15 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,27 @@ on:
push:
branches:
- release
- master
- hotfix-*
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release-please.outputs.release_created }}
tag_name: ${{ steps.release-please.outputs.tag_name }}
steps:
- uses: google-github-actions/release-please-action@v3
id: release-please
with:
command: manifest
default-branch: release
# extra-files: |
# packages/chronos/package.json
# packages/client/package.json
# packages/gql-executor/package.json
# packages/integration-tests/package.json
# packages/server/package.json
# changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false}]'
docker-build:
needs: release-please
if: needs.release-please.outputs.release_created
#runs-on: ubuntu-8cores
runs-on: ubuntu-latest
steps:
- name: Print tag if it was a release
run: |
echo ${{ needs.release-please.outputs.tag_name }}
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "6.1000.0"
".": "6.1004.0"
}
57 changes: 57 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,63 @@ This project adheres to [Semantic Versioning](http://semver.org/).

This CHANGELOG follows conventions [outlined here](http://keepachangelog.com/).

## [6.1004.0](https://github.com/rafaelromcar-parabol/parabol/compare/v6.1003.0...v6.1004.0) (2023-10-20)


### Added

* **ci:** docker-build job created ([26a4be2](https://github.com/rafaelromcar-parabol/parabol/commit/26a4be2f0c15dcf865e860e1620b3ee16279c64b))
* **ci:** docker-build job depends on release-please job ([9f0af2c](https://github.com/rafaelromcar-parabol/parabol/commit/9f0af2c33481d722204646ef6477bb632fc8afac))

## [6.1003.0](https://github.com/rafaelromcar-parabol/parabol/compare/v6.1002.1...v6.1003.0) (2023-10-20)


### Added

* **ci:** emtpy feature ([6720d6e](https://github.com/rafaelromcar-parabol/parabol/commit/6720d6ec3a9cc59eeafbdb80897472128db57704))
* **ci:** print the tag if it was a release ([b03f19d](https://github.com/rafaelromcar-parabol/parabol/commit/b03f19dfc5716e1b4a1dda67b18cd2727db14425))

## [6.1002.1](https://github.com/rafaelromcar-parabol/parabol/compare/v6.1002.0...v6.1002.1) (2023-10-18)


### Fixed

* **ci:** adding back bootstrap-sha as the name of the release has changed ([909b1b1](https://github.com/rafaelromcar-parabol/parabol/commit/909b1b16d71b78c0094851590ac1843950ed6cc2))
* **ci:** bootstrap-sha in the correct section ([f48b47d](https://github.com/rafaelromcar-parabol/parabol/commit/f48b47db0616cd66387fbd097dbf47ee208216e1))
* **ci:** include-component-in-tag is now a boolean ([05f46a0](https://github.com/rafaelromcar-parabol/parabol/commit/05f46a0cdef967e08927d4d8f0d5e61259ee5d46))


### Changed

* **ci:** release tag added to the PR will be extra now ([e72f298](https://github.com/rafaelromcar-parabol/parabol/commit/e72f298e93d40669d28881e5364d3fae8481a7ee))

## [6.1002.0](https://github.com/rafaelromcar-parabol/parabol/compare/parabol-action-v6.1001.0...parabol-action-v6.1002.0) (2023-10-18)


### Added

* feature 6 directly on release ([45e2133](https://github.com/rafaelromcar-parabol/parabol/commit/45e2133588d7cf5c7cbf0c682c5d073ab8bd9b9e))


### Changed

* **ci:** adding label with release as label, to help identifying the PRs ([db508c3](https://github.com/rafaelromcar-parabol/parabol/commit/db508c3c1f2e43b898466e78167f42f48514f587))
* **ci:** adding pull-request-title-pattern to get a prettier PR title ([8417b1b](https://github.com/rafaelromcar-parabol/parabol/commit/8417b1b94ec9019c1d379abd9e7d1db2c28910d6))
* **ci:** include-component-in-tag and pull-request-title-pattern in package ([aecb2b4](https://github.com/rafaelromcar-parabol/parabol/commit/aecb2b4f3b1103c3be485d6c661a1a3a887fe341))
* **ci:** release-please removed unused include-v-in-tag ([a6deef9](https://github.com/rafaelromcar-parabol/parabol/commit/a6deef92367da28768df83ff186758fa59d3ac36))

## [6.1001.0](https://github.com/rafaelromcar-parabol/parabol/compare/parabol-action-v6.1000.0...parabol-action-v6.1001.0) (2023-10-18)


### Added

* feature 5 done after merging back release branch ([4246ccc](https://github.com/rafaelromcar-parabol/parabol/commit/4246ccc5bb41a30794f2b484ca3bc3bc575615cb))


### Changed

* **ci:** release-please will not include the component name in the generated tag, and it will have the v ([d089af9](https://github.com/rafaelromcar-parabol/parabol/commit/d089af98e06f75a298ab424f7c859c80218a6475))

## [6.1000.0](https://github.com/rafaelromcar-parabol/parabol/compare/parabol-action-v6.999.0...parabol-action-v6.1000.0) (2023-10-18)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "An open-source app for building smarter, more agile teams.",
"author": "Parabol Inc. <[email protected]> (http://github.com/ParabolInc)",
"license": "AGPL-3.0",
"version": "6.1000.0",
"version": "6.1004.0",
"repository": {
"type": "git",
"url": "https://github.com/ParabolInc/parabol"
Expand Down
2 changes: 1 addition & 1 deletion packages/chronos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chronos",
"version": "6.1000.0",
"version": "6.1004.0",
"description": "A cron job scheduler",
"author": "Matt Krick <[email protected]>",
"homepage": "https://github.com/ParabolInc/parabol/tree/master/packages/chronos#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "An open-source app for building smarter, more agile teams.",
"author": "Parabol Inc. <[email protected]> (http://github.com/ParabolInc)",
"license": "AGPL-3.0",
"version": "6.1000.0",
"version": "6.1004.0",
"repository": {
"type": "git",
"url": "https://github.com/ParabolInc/parabol"
Expand Down
2 changes: 1 addition & 1 deletion packages/gql-executor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gql-executor",
"version": "6.1000.0",
"version": "6.1004.0",
"description": "A Stateless GraphQL Executor",
"author": "Matt Krick <[email protected]>",
"homepage": "https://github.com/ParabolInc/parabol/tree/master/packages/gqlExecutor#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "integration-tests",
"author": "Parabol Inc. <[email protected]> (http://github.com/ParabolInc)",
"license": "AGPL-3.0",
"version": "6.1000.0",
"version": "6.1004.0",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "An open-source app for building smarter, more agile teams.",
"author": "Parabol Inc. <[email protected]> (http://github.com/ParabolInc)",
"license": "AGPL-3.0",
"version": "6.1000.0",
"version": "6.1004.0",
"repository": {
"type": "git",
"url": "https://github.com/ParabolInc/parabol"
Expand Down
6 changes: 5 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"bootstrap-sha": "5c0b283ecffed911ba263bdcdb431a13f5572820",
"packages": {
".": {
"release-type": "node"
"release-type": "node",
"pull-request-title-pattern": "chore${scope}: release ${version}",
"include-component-in-tag": false
}
},
"extra-label": "release",
"changelog-sections": [
{
"type":"feat",
Expand Down

0 comments on commit e6b3165

Please sign in to comment.