If you are looking to retrieve a variable defined at the GitHub repository settings level, here is how I accessed this value:
name: Decrypt env.enc file to .env and load in variable ENV contenton: workflow_call: secrets: MAIN_SECRET_KEY_SOPS: required: trueenv: env_exemple: ${{ vars.REPOSITORY_API_PATH }}jobs: testVars: runs-on: ubuntu-latest steps: - name: Print example value created in GitHub repository variable:API_PATH run: echo ${{ env.env_exemple }}
vars contexte :https://docs.github.com/en/actions/learn-github-actions/variables
With the vars context, you don't need to pass the value to workflow_call; it's already accessible