-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(release-please): Add monorepo config
This will allow us to release each of our actions and reusable workflows individually, which will allow us to evolve them without worrying about breaking users. Doing it separately will avoid users being asked to upgrade unnecessarily.
- Loading branch information
Showing
3 changed files
with
118 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
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 @@ | ||
{} |
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,104 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", | ||
"changelog-sections": [ | ||
{ | ||
"section": "🎉 Features", | ||
"type": "feat" | ||
}, | ||
{ | ||
"section": "🐛 Bug Fixes", | ||
"type": "fix" | ||
}, | ||
{ | ||
"section": "⚡ Performance Improvements", | ||
"type": "perf" | ||
}, | ||
{ | ||
"section": "🔗 Dependencies", | ||
"type": "deps" | ||
}, | ||
{ | ||
"section": "📝 Documentation", | ||
"type": "docs" | ||
}, | ||
{ | ||
"section": "🏗️ Build System", | ||
"type": "build" | ||
}, | ||
{ | ||
"section": "🤖 Continuous Integration", | ||
"type": "ci" | ||
}, | ||
{ | ||
"section": "🔧 Miscellaneous Chores", | ||
"type": "chore" | ||
}, | ||
{ | ||
"section": "⏪ Reverts", | ||
"type": "revert" | ||
}, | ||
{ | ||
"section": "✅ Tests", | ||
"type": "test" | ||
}, | ||
{ | ||
"section": "💄 Style", | ||
"type": "style" | ||
}, | ||
{ | ||
"section": "♻️ Code Refactoring", | ||
"type": "refactor" | ||
} | ||
], | ||
"draft-pull-request": true, | ||
"include-v-in-tag": true, | ||
"packages": { | ||
"actions/argo-lint": { | ||
"package-name": "argo-lint" | ||
}, | ||
"actions/aws-auth": { | ||
"package-name": "aws-auth" | ||
}, | ||
"actions/build-push-to-dockerhub": { | ||
"package-name": "build-push-to-dockerhub" | ||
}, | ||
"actions/dockerhub-login": { | ||
"package-name": "dockerhub-login" | ||
}, | ||
"actions/find-pr-for-commit": { | ||
"package-name": "find-pr-for-commit" | ||
}, | ||
"actions/generate-openapi-clients": { | ||
"package-name": "generate-openapi-clients" | ||
}, | ||
"actions/get-vault-secrets": { | ||
"package-name": "get-vault-secrets" | ||
}, | ||
"actions/lint-pr-title": { | ||
"package-name": "lint-pr-title" | ||
}, | ||
"actions/login-to-gar": { | ||
"package-name": "login-to-gar" | ||
}, | ||
"actions/login-to-gcs": { | ||
"package-name": "login-to-gcs" | ||
}, | ||
"actions/push-to-gar-docker": { | ||
"package-name": "push-to-gar-docker" | ||
}, | ||
"actions/push-to-gcs": { | ||
"package-name": "push-to-gcs" | ||
}, | ||
"actions/send-slack-message": { | ||
"package-name": "send-slack-message" | ||
}, | ||
"actions/setup-argo": { | ||
"package-name": "setup-argo" | ||
}, | ||
"actions/setup-conftest": { | ||
"package-name": "setup-conftest" | ||
} | ||
}, | ||
"release-type": "simple", | ||
"separate-pull-requests": true | ||
} |