From 2a40f7184c370a4fc777513a90ec4e5d7b108676 Mon Sep 17 00:00:00 2001 From: Hidetake Iwata Date: Fri, 20 Oct 2023 09:40:32 +0900 Subject: [PATCH] Update README.md --- bootstrap-pull-request/README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/bootstrap-pull-request/README.md b/bootstrap-pull-request/README.md index 4a982dcbb..828942b70 100644 --- a/bootstrap-pull-request/README.md +++ b/bootstrap-pull-request/README.md @@ -1,7 +1,26 @@ # bootstrap-pull-request [![bootstrap-pull-request](https://github.com/quipper/monorepo-deploy-actions/actions/workflows/bootstrap-pull-request.yaml/badge.svg)](https://github.com/quipper/monorepo-deploy-actions/actions/workflows/bootstrap-pull-request.yaml) This is an action to bootstrap the pull request namespace. -It should be called when a pull request is created or updated. +When a pull request is created or updated, this action copies the service manifests from the prebuilt branch. + +```mermaid +graph LR + subgraph Source repository + SourceNamespaceManifest[Namespace manifest] + end + subgraph Destination repository + subgraph Prebuilt branch + PrebuiltServiceManifest[Service manifest] + end + subgraph Namespace branch + ApplicationManifest[Application manifest] + ServiceManifest[Service manifest] + NamespaceManifest[Namespace manifest] + end + end + PrebuiltServiceManifest --Copy--> ServiceManifest + SourceNamespaceManifest --Copy--> NamespaceManifest +``` ## Getting Started