From 2a3018bad513e4400df551b653d958c2d9544f01 Mon Sep 17 00:00:00 2001 From: Shakar Bakr <5h4k4r.b4kr@gmail.com> Date: Tue, 27 May 2025 12:59:21 +0300 Subject: [PATCH] Update default value in action.yml to use single quotes for the Git SHA input, ensuring 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 627ee74..f9c8e2f 100644 --- a/action.yml +++ b/action.yml @@ -27,7 +27,7 @@ inputs: SHA: description: 'The SHA of the latest commit (automatically set)' required: false - default: ${{ github.sha }} + default: '${{ github.sha }}' TOKEN: description: 'The GitHub access token to allow us to retrieve, create and update issues (automatically set)' required: false