From a10e676d117f913ee1b1d6bf1c439706088ee8fb Mon Sep 17 00:00:00 2001 From: Caitlin Schaefer Date: Mon, 18 Nov 2024 09:47:43 -0800 Subject: [PATCH] add description and default for 'update_token' input --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index b4a5b35..1e4d0e3 100644 --- a/action.yml +++ b/action.yml @@ -10,6 +10,9 @@ inputs: github_token: description: "GitHub's Personal Access Token (PAT). Defaults to GITHUB_TOKEN." default: ${{ github.token }} + update_token: + description: "Personal Access Token (PAT) used for 'update' to publish PRs against the relevant repo." + default: ${{ github.token }} patcher_command: description: "Patcher command to run. Valid options: 'update' or 'report'." default: "update"