From 644390f59ab24d2ebafc59ca4319aa1c234fb94d Mon Sep 17 00:00:00 2001 From: Leon Mika Date: Thu, 2 Jan 2025 11:53:37 +1100 Subject: [PATCH] Switch from remote-branch to target-branch --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index e2e1e24..def963b 100644 --- a/config.go +++ b/config.go @@ -16,6 +16,6 @@ func readConfig() config { AppName: os.Getenv("INPUT_APP"), PrivateKey: os.Getenv("INPUT_PRIVATE-KEY"), LocalBranch: os.Getenv("INPUT_SOURCE-BRANCH"), - RemoteBranch: os.Getenv("INPUT_REMOTE-BRANCH"), + RemoteBranch: os.Getenv("INPUT_TARGET-BRANCH"), } }