From 758f928a4e4f0defc8eee20523990548af23c230 Mon Sep 17 00:00:00 2001 From: Ehsan Afzali Date: Tue, 25 Jan 2022 18:40:34 +0200 Subject: [PATCH] Use secrets.GITHUB_TOKEN by default as repo-token This will truly make repo-token optional. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b5333e2..e3ace7f 100644 --- a/action.yml +++ b/action.yml @@ -21,7 +21,7 @@ inputs: repo-token: description: "A GitHub token for the repo" required: false - default: "" + default: "${{ secrets.GITHUB_TOKEN }}" wait-interval: description: "Seconds to wait between Checks API requests" required: false