From d5520e1e1396da8d28ce49789e2a513a67389f96 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Fri, 18 Jun 2021 19:03:51 -0400 Subject: [PATCH] Fixed missing env variables (#108) --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index fdf9d425154..75c51b568d6 100644 --- a/action.yml +++ b/action.yml @@ -58,6 +58,9 @@ runs: id: changed-files shell: bash env: + GITHUB_SHA: ${{ github.sha }} + GITHUB_BASE_REF: ${{ github.base_ref }} + GITHUB_REPOSITORY: ${{ github.repository }} # INPUT_ is not available in Composite run steps # https://github.community/t/input-variable-name-is-not-available-in-composite-run-steps/127611 INPUT_TOKEN: ${{ inputs.github_token }}