From 365551c214c78fef9d97942794f767c7107c9034 Mon Sep 17 00:00:00 2001 From: Shakar Bakr <5h4k4r.b4kr@gmail.com> Date: Tue, 27 May 2025 12:59:04 +0300 Subject: [PATCH] Update default value in action.yml to use single quotes for consistency in YAML syntax. Signed-off-by: Shakar Bakr <5h4k4r.b4kr@gmail.com> --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b3b1a6f..627ee74 100644 --- a/action.yml +++ b/action.yml @@ -11,7 +11,7 @@ inputs: REPO: description: "The path to the repository where the action will be used, e.g. 'alstr/my-repo' (automatically set)" required: false - default: ${{ github.repository }} + default: '${{ github.repository }}' BEFORE: description: 'The SHA of the last pushed commit (automatically set)' required: false