From 0e2c072a6c3eaba614cfa783ab34c6047a6342cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 24 Jan 2022 18:47:41 +0100 Subject: [PATCH] Enhancement: Use core to obtain input --- actions/github/add-assignee-to-pull-request/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/github/add-assignee-to-pull-request/action.yaml b/actions/github/add-assignee-to-pull-request/action.yaml index 6c7d353..d9774ae 100644 --- a/actions/github/add-assignee-to-pull-request/action.yaml +++ b/actions/github/add-assignee-to-pull-request/action.yaml @@ -52,7 +52,7 @@ runs: } const assignees = [ - "${{ inputs.assignee }}", + core.getInput("assignee"), ]; try {