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; }