Files
Bose-SoundTouch/.github/markdown-link-check.json
T
Tobias Gesellchen b6adf51767 feat: Add comprehensive CI/CD pipeline with GitHub Actions
- Add CI workflow with multi-version Go testing, linting, security scans
- Add automated release workflow triggered on tag push
- Include Dependabot for dependency management
- Add professional issue templates for bugs and features
- Configure golangci-lint with production-ready settings
- Update local release script to complement automation
- Support cross-platform builds for 7 platforms
- Automated release notes and checksum generation
2026-01-09 12:58:35 +01:00

46 lines
849 B
JSON

{
"timeout": "20s",
"retryOn429": true,
"retryCount": 3,
"fallbackRetryDelay": "30s",
"aliveStatusCodes": [200, 206],
"ignorePatterns": [
{
"pattern": "^http://localhost"
},
{
"pattern": "^https://localhost"
},
{
"pattern": "^http://127.0.0.1"
},
{
"pattern": "^http://192.168."
},
{
"pattern": "^http://10."
},
{
"pattern": "^http://172."
},
{
"pattern": "^https://pkg.go.dev.*badge"
}
],
"replacementPatterns": [
{
"pattern": "^/",
"replacement": "{{BASEURL}}/"
}
],
"httpHeaders": [
{
"urls": ["https://github.com", "https://api.github.com"],
"headers": {
"Accept-Encoding": "zstd, br, gzip, deflate",
"User-Agent": "Mozilla/5.0 (compatible; LinkChecker)"
}
}
]
}