Pascal Berger

Results 169 comments of Pascal Berger

Currently you can either export release notes for a specific version (using the `tagName`) parameter or for all releases for a repository. In my use case I'm looking for the...

Not necessary a duplicate as #2347 explicitely asks for PlantUML support, which requires additional infrastructure and therefore might not be suitable for every situation. I can also live with any...

@BggClr In the first post you mention you use Cake.Npm version 0.13.0 with 0.26.0. To which Cake.Npm version are you relating [here](https://github.com/cake-build/resources/issues/55#issuecomment-375589162)? Cake.Npm 0.13.0 only supports Cake 0.26.0+ so it...

@AdmiringWorm What kind of integration are you expecting? I've the idea of the providing a plugin to Cake.Issues to create output in the generic issue data format (see [Cake.Issues.Reporting.SonarQube](https://github.com/cake-contrib/Cake.Issues.Reporting.SonarQube)). This...

That's definitely an option which I also though about. It might also be something which can be done in Cake.Common (after 1.0). For the time being it is probably the...

Exception fixed with #493. We should still create a log file for .NET Core builds which can be passed to Cake.Issues.Recipe.

@gep13 `tfBuild.Environment.Repository.Branch` returns the value of the [Build.SourceBranchName](https://docs.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=azure-devops&tabs=yaml) variable which is documented like this: > The name of the branch the build was queued for. > Git repo branch or...

IMHO BuildParameters currently contains two different things: - Input paramters - Build state The second should go into a typed context. But for input a static BuildParameters class still can...

Passing multiple typed context to a task? I don't think there's an extension in Cake for this. But you can just use `context.Data.Get()` directly which the `Does` extension basically wraps:...

We should also have documentation for advanced typed context scenarios on the website. I created https://github.com/cake-build/website/issues/934 for this.