From 884cf34c0d65b49aca1b89f1b75a0f6105f03ebc Mon Sep 17 00:00:00 2001 From: Colin Dembovsky Date: Thu, 22 Apr 2021 10:37:34 -0500 Subject: [PATCH] Updated Deployment With GitHub Actions (markdown) --- Deployment-With-GitHub-Actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Deployment-With-GitHub-Actions.md b/Deployment-With-GitHub-Actions.md index 76d61a4..5e890bf 100644 --- a/Deployment-With-GitHub-Actions.md +++ b/Deployment-With-GitHub-Actions.md @@ -143,7 +143,7 @@ Note the following: - The name of the workflow is `Deploy catalog-api`. - This workflow has three triggers:. 1. `workflow_dispatch` is for manually triggering a deployment. - 1. `repository_dispatch` is for triggering this workflow via the REST API. + 1. `repository_dispatch` is for triggering this workflow via the [REST API](https://docs.github.com/en/rest/reference/repos#create-a-repository-dispatch-event). 1. `workflow_run` triggers this workflow when runs of the `catalog-api` workflow run on `dev` and are `completed`. - Some variables are defined inline under the `env` section. - There is a single job called `deploy-to-k8s`.