From d37e4be7518474b10790c493d68fb66d5b5d893b Mon Sep 17 00:00:00 2001 From: Ryan Lovett Date: Fri, 25 Oct 2024 16:55:38 -0700 Subject: [PATCH] This fixes the alternative color scheme. Not sure why -- it was only affecting one node. --- docs/admins/cicd-github-actions.qmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/admins/cicd-github-actions.qmd b/docs/admins/cicd-github-actions.qmd index 03353d051..eb60320b7 100644 --- a/docs/admins/cicd-github-actions.qmd +++ b/docs/admins/cicd-github-actions.qmd @@ -124,7 +124,7 @@ is used to deploy only the flagged hubs. stateDiagram-v2 image_repo: github.com/berkeley-dsep-infra/hubname-user-image - forked_repo: github.com/github username/hubname-user-image + user_repo: github.com/username/hubname-user-image image_test_build: Image is built and tested image_push_build: Image is built and pushed to registry pr_created: A pull request is automatically
created in the Datahub repo @@ -132,8 +132,8 @@ stateDiagram-v2 contributor_tests: The contributor logs into the
staging hub and tests the image. deploy_to_prod: Hub is deployed to prod - image_repo --> forked_repo: Contributor forks the image repo. - forked_repo --> image_repo: Contributor creates a PR. + image_repo --> user_repo: Contributor forks the image repo. + user_repo --> image_repo: Contributor creates a PR. image_repo --> image_test_build image_test_build --> image_push_build: Test build passes and Datahub staff merge pull request image_push_build --> pr_created