From 97be8087cec825ea3ca942ee894247c38f843c1c Mon Sep 17 00:00:00 2001 From: Priyanka Saggu Date: Fri, 8 May 2020 20:27:35 +0530 Subject: [PATCH] correct example usage. - `uses: franzdiebold@github-env-vars-action@v1.0.0` It was throwing the following error: ``` Invalid workflow file The workflow is not valid. .github/workflows/main.yml (Line: 94, Col: 13): Expected format {org}/{repo}[/path]@ref. Actual 'github-env-vars-action@v1.0.0',Input string was not in a correct format. ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 89edaba..2828c11 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ For a full list of default environment variables exposed by GitHub see [https:// ```yaml steps: - - uses: franzdiebold@github-env-vars-action@v1.0.0 + - uses: franzdiebold/github-env-vars-action@v1.0.0 - name: Print environment variables run: | echo "GITHUB_REPOSITORY_OWNER=$GITHUB_REPOSITORY_OWNER"