GitHub Actions Log Viewing in VSCode

To help parse through the monstrosity of GitHub Actions workflow logs, consider adding some tools into your VSCode workspace to assist in viewing. Either download the raw logs manually or consider enabling debug log artifacts via secret variable or re-running your specific workflow with the Enable debug logging flag.

Log File Highlighter

MarketPlace: Log File Highlighter

Add the following settings!

// Log File Highlighter - show github action logs!
    “files.associations”: {
    “*.log.*“: “log”,
    “*Analyze*.txt”: “log”,
“*Analysis*.txt”: “log”,
    “1_*.txt”: “log”
},
// Log File Hightlighter - show for large files
“[log]“: {
    “editor.largeFileOptimizations”: false,
}