From 550a8c0d96daeee96abc9430c500bc43e1fdc4f8 Mon Sep 17 00:00:00 2001 From: Nick DeRobertis Date: Sun, 24 Oct 2021 11:01:51 -0400 Subject: [PATCH] Remove optional chain as it is not supported --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 00bb8fd..89b02a8 100644 --- a/action.yml +++ b/action.yml @@ -23,7 +23,7 @@ inputs: DIFF_URL: description: "The URL to use to get the diff (automatically set)" required: true - default: "${{ github.event.pull_request?.diff_url }}" + default: "${{ github.event.pull_request.diff_url }}" SHA: description: "The SHA of the latest commit (automatically set)" required: true