Replies: 1 comment 1 reply
-
I'm not yet fully familiar with the API from GitHub so correct me if I'm completely wrong here, but I would assume that |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi
I recently had following situation:
I have implemented some detection for changed files.
To achieve this, I've had to add a parameter and pass
github.event.pull_request.base.ref
into the NUKE build pipeline.On my local dev device all is running well (with parameter and parameter omitted), in the PR of the project I am contributing to as well.
Now here is the problem: After merging into the
develop
branchgithub.event.pull_request.base.ref
was not set to an expected value (had assumed to benull
), but actually it was an empty string. Thus, the build was failing.Is there a neat way to previously check all different possibilities and "unit test" the behavior?
Beta Was this translation helpful? Give feedback.
All reactions