From e54c7a866d8cfa5558cc96f79c91c4db8aabb75a Mon Sep 17 00:00:00 2001 From: Akshay Iyyadurai Balasundaram Date: Thu, 22 Aug 2019 19:13:36 +0200 Subject: [PATCH] Fix: wrong spelling for using action in a workflow (#76) --- docs/javascript-action.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/javascript-action.md b/docs/javascript-action.md index 39a8f188..1d287fee 100644 --- a/docs/javascript-action.md +++ b/docs/javascript-action.md @@ -139,7 +139,7 @@ Once the action has a self contained version in the v1-release branch, you can t ```yaml steps: - using: {org}/{reponame}@v1-release + uses: {org}/{reponame}@v1-release ``` ## Release Current Changes as v1 @@ -154,7 +154,7 @@ Users can now reference your action in their workflows with ```yaml steps: - using: {org}/{reponame}@v1 + uses: {org}/{reponame}@v1 ```