From 44c1bcd259075d71d3c16ebdaca7459c3aea76ee Mon Sep 17 00:00:00 2001 From: Dina Berry <41597107+diberry@users.noreply.github.com> Date: Tue, 6 Dec 2022 18:33:23 -0800 Subject: [PATCH] Link sample code to documentation (#22425) Co-authored-by: Lucas Costi --- .../creating-actions/creating-a-javascript-action.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/content/actions/creating-actions/creating-a-javascript-action.md b/content/actions/creating-actions/creating-a-javascript-action.md index 5a1ea071a9..8dcb762313 100644 --- a/content/actions/creating-actions/creating-a-javascript-action.md +++ b/content/actions/creating-actions/creating-a-javascript-action.md @@ -271,3 +271,10 @@ jobs: From your repository, click the **Actions** tab, and select the latest workflow run. Under **Jobs** or in the visualization graph, click **A job to say hello**. You should see "Hello Mona the Octocat" or the name you used for the `who-to-greet` input and the timestamp printed in the log. ![A screenshot of using your action in a workflow](/assets/images/help/repository/javascript-action-workflow-run-updated-2.png) + +## Template repositories for creating JavaScript actions + +{% data variables.product.prodname_dotcom %} provides template repositories for creating JavaScript and TypeScript actions. You can use these templates to quickly get started with creating a new action that includes tests, linting, and other recommended practices. + +* [`javascript-action` template repository](https://github.com/actions/javascript-action) +* [`typescript-action` template repository](https://github.com/actions/typescript-action)