Hi,
Is it a simple way to access the name of the context ? I need this mostly for debugging and reassurance proposes. I am running same job with different parameters and context based on filters. Something like this
- my_job:
name: my_job
context: "dev"
action: my_action_1
filters:
branches:
# match any personal or testing devops branches
ignore:
- branch1
- branch2
- branch3
- my_job:
name: my_job
context: "qa"
action: my_action_2
filters:
branches:
only:
- /.*-dev\/.*/
Can I access the value of context under job block for example? Something like
<< pipeline.parameters.context >>