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
Update to .NET 10, adapt code style to Steeltoe conventions (#22)
* Convert to slnx
* Remove dependency on Steeltoe 3.x
* Update to .NET 10, run tests during Docker build
* Use file-scoped namespaces
* Additional code cleanup
* Apply style settings from Steeltoe
* Enable nullable reference types
* Use top-level statements, replace Swashbuckle with ASP.NET OpenAPI
* Docker tweaks
* Do not auto-redirect to https
* Delete CODEOWNERS
* Only enable health actuator for non-development
* Disable install/uninstall endpoints by default
* Fixed: always use forward slashes in paths inside zip
* Fixed: do not wrap into multiple exceptions
* Restore original log level
* Fix broken error handling
* Strip paths from output
* Remove UseAuthorization
* Move setting DOTNET_ENVIRONMENT in Docker, remove unused settings
* Add code style verification
* Remove Nerdbank.GitVersioning
* Set up vulnerability scans
* Apply suggestions from code review
Co-authored-by: Tim Hess <tim.hess@broadcom.com>
---------
Co-authored-by: Tim Hess <tim.hess@broadcom.com>
# Not using the environment variables for SHAs, because they may be outdated. This may happen on force-push after the build is queued, but before it starts.
54
+
# The below works because HEAD is detached (at the merge commit), so HEAD~1 is at the base branch. When a PR contains no commits, this job will not run.
55
+
$headCommitHash = git rev-parse HEAD
56
+
$baseCommitHash = git rev-parse HEAD~1
57
+
58
+
Write-Output "Running code cleanup on commit range $baseCommitHash..$headCommitHash in pull request."
0 commit comments