From eb73a2db7ecb28374b93f334b18ae00830567a6b Mon Sep 17 00:00:00 2001
From: Ameya Lokare <lokare.ameya@gmail.com>
Date: Sun, 24 Oct 2021 14:47:31 +0530
Subject: [PATCH] Change secret name for PAT to not start with GITHUB_

Github doesn't allow secret names that start with `GITHUB_` (case insensitive). Update README to choose a different prefix (GH).
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 9c56a6f..775cee5 100644
--- a/README.md
+++ b/README.md
@@ -185,7 +185,7 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous
   uses: actions/checkout@v2
   with:
     repository: my-org/my-private-tools
-    token: ${{ secrets.GitHub_PAT }} # `GitHub_PAT` is a secret that contains your PAT
+    token: ${{ secrets.GH_PAT }} # `GH_PAT` is a secret that contains your PAT
     path: my-tools
 ```