From 0b1ec2fb6cfeaf7ce9cd49b42aa3f30ec21ec821 Mon Sep 17 00:00:00 2001 From: sharmag Date: Sun, 12 Oct 2025 18:09:30 +0530 Subject: [PATCH] Fix typo in create-custom-github-action.md --- .../includes/create-custom-github-action.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/learn-pr/github/create-custom-github-actions/includes/create-custom-github-action.md b/learn-pr/github/create-custom-github-actions/includes/create-custom-github-action.md index 567e99d065f..4db65d02784 100644 --- a/learn-pr/github/create-custom-github-actions/includes/create-custom-github-action.md +++ b/learn-pr/github/create-custom-github-actions/includes/create-custom-github-action.md @@ -39,9 +39,9 @@ Packaged composite actions bundle multiple steps into a reusable unit. These act When creating a packaged composite action, the steps are defined in a single `action.yml` file. This file specifies the inputs, outputs, and the sequence of commands or actions to execute. Packaged composite actions are particularly useful for automating repetitive tasks or combining multiple shell commands into a single reusable action. -## Create a composite qction +## Create a composite action -### 1. Set Up a directory for the composite action +### 1. Set Up a directory for the composite actions You must place your composite action in its own directory inside the repository.