From 5ae7ce16e0191d71e30c2f2c4395b94a149c9568 Mon Sep 17 00:00:00 2001 From: Vijay-train <53718047+Vijay-train@users.noreply.github.com> Date: Wed, 24 Aug 2022 18:08:14 +0530 Subject: [PATCH] Fixing typo to render link properly (#1750) --- Actions-Runner-Controller-Overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Actions-Runner-Controller-Overview.md b/Actions-Runner-Controller-Overview.md index d20ec4e6..8a7e0b85 100644 --- a/Actions-Runner-Controller-Overview.md +++ b/Actions-Runner-Controller-Overview.md @@ -4,7 +4,7 @@ This document provides a high level overview of Actions Runner Controller (ARC). This document provides a background of Github Actions, self-hosted runners and ARC overview. By the end of the doc, the reader should have a foundation with basic scenarios and be capable of reviewing other advanced topics. ## GitHub Actions -[GitHub Actions]](https://github.com/features/actions) is a continuous integration and continuous delivery (CI/CD) platform to automate your build, test, and deployment pipeline. +[GitHub Actions](https://github.com/features/actions) is a continuous integration and continuous delivery (CI/CD) platform to automate your build, test, and deployment pipeline. You can create workflows that build and test every pull request to your repository, or deploy merged pull requests to production. Your workflow contains one or more jobs which can run in sequential order or in parallel. Each job will run inside its own runner and has one or more steps that either run a script that you define or run an action, which is a reusable extension that can simplify your workflow. To learn more about about Actions - see "[Learn Github Actions](https://docs.github.com/en/actions/learn-github-actions)".