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
Since every commit being analyzed is logged (with the description as well as the commit message) we sometimes ned up with thousands of lines of logs in our GH Actions consoles when merging together multiple branches... to the point where the browser almost crashes.
The text was updated successfully, but these errors were encountered:
You should be able to turn off logging by setting the logger to return undefined or true.
Something like this:
constcontext={commits: [],logger: {log: ()=>undefined}}letbump=awaitcommit.analyzeCommits(pluginConfig,context)// or one lineletbump=awaitcommit.analyzeCommits(pluginConfig,{ commits,logger: {log: ()=>undefined}})
Since every commit being analyzed is logged (with the description as well as the commit message) we sometimes ned up with thousands of lines of logs in our GH Actions consoles when merging together multiple branches... to the point where the browser almost crashes.
The text was updated successfully, but these errors were encountered: