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 have these lines in my Danger.df.kts file
warn("Additions = ${git.changedLines.additions}") warn("Deletions = ${git.changedLines.deletions}") warn("Diff = ${git.changedLines.diff ?: ""}")
in my case I want to get the diff but when calling changedLines extension function just give me
changedLines
Additions = 0 Deletions = 0 Diff = null
is this extension function really working?, is there another way to get the diff?
I also tried to use the github.pullRequest but there is no a diff value here.
I have the feeling that these lines are not working
val Git.changedLines: PullRequestChangedLines get() { ... val commandRawOutput = shellExecutor.execute("git diff --numstat $headSha $baseSha") ... val commandRawDiffOutput = shellExecutor.execute("git diff $headSha $baseSha") return PullRequestChangedLines(additions, deletions, commandRawDiffOutput) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have these lines in my Danger.df.kts file
in my case I want to get the diff but when calling
changedLines
extension function just give meAdditions = 0
Deletions = 0
Diff = null
is this extension function really working?, is there another way to get the diff?
I also tried to use the github.pullRequest but there is no a diff value here.
I have the feeling that these lines are not working
The text was updated successfully, but these errors were encountered: