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
BuildTools.psm1 contains the function Invoke-Init which has hardcoded calles to git config insite that
This spoils the executing users git config with the effect that later commits for any other repo uses this as Author.
The Build Script should IMHO somhow check if it's running in the CI chain
function Invoke-Init { [Alias("Init")] [CmdletBinding()] param() begin { Set-BuildEnvironment -BuildOutput '$ProjectPath/Release' -ErrorAction SilentlyContinue Add-ToModulePath -Path $env:BHBuildOutput git config --global user.email "[email protected]" git config --global user.name "AtlassianPS Automated User" } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
BuildTools.psm1 contains the function Invoke-Init which has hardcoded calles to git config insite that
This spoils the executing users git config with the effect that later commits for any other repo uses this as Author.
The Build Script should IMHO somhow check if it's running in the CI chain
The text was updated successfully, but these errors were encountered: