Hi there,
Just trying Github App integration for its “benefits”, the idea was to be able to customize our pipeline and to run specific jobs with specific triggers, specially when PR events, but what documentation says does not work.
For example, here you can read the new kind of events received when using Github App integration, and the following is supposedly available:
Two pipeline values are available for all GitHub App pipelines for you to use to further configure the workflows and jobs to run on specific events:
pipeline.event.name pipeline.event.action
Instead when I add it to the pipeline i get:
Error evaluating job filter expression:
Referred to a variable “pipeline.event.name” that does not exist:
pipeline.event.name == “pull_request”
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
or
Error evaluating job filter expression:
Referred to a variable “pipeline.event.github.pull_request.base.ref” that does not exist:
pipeline.event.github.pull_request.base.ref == “main”
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
And in theory I can do it as docu says here.
Any idea?