mirror of
https://github.com/ossf/scorecard.git
synced 2024-11-04 03:52:31 +03:00
db81680172
The GitHub API supports conditional requests https://docs.github.com/en/rest/overview/resources-in-the-rest-api#conditional-requests https://github.com/google/go-github supports Conditional requests https://github.com/google/go-github#conditional-requests As we are scaling more and more projects this would add a lot of value. Initial run fetches information using `httpcache` as a middleware, which caches the HTTP response initially in a large disk (PVC), probably move to Redis later as a cache instead of disk. Subsequent `cron runs` will utilize the `httpcache` for checking content modification and load it from the cache if it isn't modified, which reduces the hitting the Rate Limit of the GitHub API.
28 lines
312 B
Plaintext
28 lines
312 B
Plaintext
# Scorecard binary.
|
|
scorecard
|
|
|
|
# Binaries for programs and plugins.
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`.
|
|
*.test
|
|
results.json
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE.
|
|
*.coverprofile*
|
|
|
|
|
|
# IDE directories.
|
|
.vscode/
|
|
*.iml
|
|
.idea
|
|
|
|
# tools
|
|
bin
|
|
|
|
cache
|