From c2ca380486294086d4b54c9c438eae798393c54a Mon Sep 17 00:00:00 2001 From: Marco Carrozzo Date: Mon, 16 Jan 2023 10:38:02 +0100 Subject: [PATCH] test: develop branch --- .github/actions/npm-check-bundle/action.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/actions/npm-check-bundle/action.yml b/.github/actions/npm-check-bundle/action.yml index dd6e07ce15..23229ba132 100644 --- a/.github/actions/npm-check-bundle/action.yml +++ b/.github/actions/npm-check-bundle/action.yml @@ -1,10 +1,11 @@ name: 'Check NPM bundle' description: 'check npm bundle' -outputs: - tag_sha: - description: "long sha of the tag" - value: ${{ steps.sha_out.outputs.tag_sha }} +inputs: + branch_name: + description: "override GITHUB_REF_NAME" + required: false + default: $GITHUB_REF_NAME runs: using: "composite" @@ -12,6 +13,8 @@ runs: steps: - name: load "TRAVIS_EVENT_TYPE" uses: ./.github/actions/travis-env-var-facade + with: + branch_name: ${{ inputs.branch_name }} - name: check npm bundle shell: bash id: sha_out