From a034eef28e7d4adf33119d61e8c959def3f5a4b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 24 Jan 2022 20:06:35 +0100 Subject: [PATCH] Fix: Add semicolon --- actions/github/pull-request/approve/action.yaml | 2 +- actions/github/pull-request/merge/action.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 1d8d998..79856cd 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -43,7 +43,7 @@ runs: github-token: "${{ inputs.github-token }}" script: | if (!process.env.PULL_REQUEST_NUMBER) { - core.setFailed("The environment variable PULL_REQUEST_NUMBER is not defined.") + core.setFailed("The environment variable PULL_REQUEST_NUMBER is not defined."); return; } diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index 3d3e74f..6e82122 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -49,7 +49,7 @@ runs: github-token: "${{ inputs.github-token }}" script: | if (!process.env.PULL_REQUEST_NUMBER) { - core.setFailed("The environment variable PULL_REQUEST_NUMBER is not defined.") + core.setFailed("The environment variable PULL_REQUEST_NUMBER is not defined."); return; }