Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bootstrap release-release for automatic changelog & version changes #7209

Merged
merged 6 commits into from Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/release-hotfix.yml
@@ -0,0 +1,14 @@
on:
push:
branches:
- production
name: release-hotfix
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
default-branch: production
command: manifest
token: ${{secrets.GITHUB_TOKEN}}
14 changes: 14 additions & 0 deletions .github/workflows/release-please.yml
@@ -0,0 +1,14 @@
on:
push:
branches:
- master
- staging
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
command: manifest
token: ${{secrets.GITHUB_TOKEN}}
7 changes: 7 additions & 0 deletions .release-please-manifest.json
@@ -0,0 +1,7 @@
{
".": "6.75.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 I just did the release and this should now be 6.76.0

"packages/client": "6.75.0",
"packages/server": "6.75.0",
"packages/gql-executor": "6.75.0",
"packages/integration-tests": "6.75.0"
}
18 changes: 18 additions & 0 deletions release-please-config.json
@@ -0,0 +1,18 @@
{
"bootstrap-sha": "d29aa0314c82bac17a6e55fc18ac7322c31b40c6",
"last-release-sha": "d29aa0314c82bac17a6e55fc18ac7322c31b40c6",
"plugins": ["node-workspace"],
"draft-pull-request": true,
"group-pull-request-title-pattern": "chore: release v${version}",
"include-component-in-tag": false,
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"release-type": "node"
},
"packages/client": {},
"packages/server": {},
"packages/gql-executor": {},
"packages/integration-tests": {}
}
}