Asbjørn Ulsberg

Results 545 comments of Asbjørn Ulsberg

[Codacy](https://www.codacy.com/) is free for open source and is quite capable. It also supports SonarQube's configuration format so it can be committed to source. We use it and are quite happy...

[Infersharp](https://github.com/microsoft/infersharp) may also be a low-hanging fruit worth implementing since it's available as a [GitHub Action](https://github.com/marketplace/actions/c-code-analyzer): ```yaml - name: Run C# Code Analyzer uses: microsoft/[email protected] id: runcsharpcodeanalyzer with: binary-path: ''...

`GITHUB_TOKEN` can also preferably be passed in the `with` section, so `env` can be removed completely.

@Paulomart, what do you mean "no way to display the error"? Many code review tools, such as [reviewdog](https://github.com/reviewdog/reviewdog) and [Codacy](https://www.codacy.com/) are triggered with GitHub Actions and report their findings through...

I would say that the rebase action builds up to the expectancy of being able to communicate with comments in the PR, as that's how the rebase is triggered to...

I would actually love it if the rebase action behaved almost exactly like Dependabot. Here's a more concrete suggestion: 1. When the rebase is started, the action could add a...

As https://github.com/shd101wyy/mume/pull/221 added PlantUML server support, perhaps exposing that through configuration of `vscode-markdown-preview-enhanced` would be an OK solution? Being able to configure the path to `plantuml.jar` would of course also...

Yeah, same. [Here's a publicly available GitHub Actions run with the error](https://github.com/asbjornu/test/runs/5182470906?check_suite_focus=true): ```js { error: TypeError: Cannot destructure property `login` of 'undefined' or 'null'. at /home/runner/work/_actions/cleartax/jira-lint/master/lib/index.js:1:21210 at Generator.next () at...

It would be a lot easier to debug this problem if a non-minimized version of the action was provided, somehow. If one can be provided (in a separate branch, for...

I'm not sure, but I believe that this would fix the problem: ```diff diff --git a/src/main.ts b/src/main.ts index 10d28e9..4b55e79 100755 --- a/src/main.ts +++ b/src/main.ts @@ -64,7 +64,6 @@ async function...