You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Print [GitHub Actions annotations](https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-commands) in the console when dependency issues are detected.
By default, violations are annotated as errors. To report specific violation codes as warnings instead, use the [GitHub warning errors](#github-warning-errors) option.
398
+
399
+
- Type: `bool`
400
+
- Default: `False`
401
+
- `pyproject.toml` option name: `github_output`
402
+
- CLI option name: `--github-output`
403
+
- `pyproject.toml` example:
404
+
```toml
405
+
[tool.deptry]
406
+
github_output = true
407
+
```
408
+
- CLI example:
409
+
```shell
410
+
deptry . --github-output
411
+
```
412
+
413
+
#### GitHub warning errors
414
+
415
+
When [GitHub output](#github-output) option is enabled, this sets the severity of messages to `warning` instead of `error` for the specified error codes.
0 commit comments