We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using a Reusable workflow with one input variable , while I am calling this workflow from another workflow input value is not getting passed.
CALLED_WORKFLOW
name: called workflow on: workflow_call: inputs: custom_chart_name: required: false type: string jobs: build: runs-on: ubuntu-latest steps: - name: Test1 run: | export CUSIN="${{ github.event.inputs.custom_chart_name }}" echo $CUSIN
CALLER_WORKFLOW
name: caller workflow on: push: branches: - main jobs: helm: uses: ./.github/workflows/test.yaml with: custom_chart_name: "global-monitoring"
not getting value of $CUSIN in output
$CUSIN
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am using a Reusable workflow with one input variable , while I am calling this workflow from another workflow input value is not getting passed.
CALLED_WORKFLOW
CALLER_WORKFLOW
not getting value of
$CUSIN
in outputThe text was updated successfully, but these errors were encountered: