Skip to content

Commit ca04617

Browse files
committed
Autodetect version tags
Towards coreinfrastructure#2139. Still draft because it needs updates to the unit tests (/VCR) but I ran into problems with the chrome integration of the tests. Signed-off-by: Arnout Engelen <[email protected]>
1 parent a848094 commit ca04617

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

app/lib/github_basic_detective.rb

+12
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class GithubBasicDetective < Detective
2020
OUTPUTS = %i[
2121
name license discussion_status repo_public_status repo_track_status
2222
repo_distributed_status contribution_status implementation_languages
23+
version_tags
2324
].freeze
2425

2526
# These are the 'correct' display case for SPDX for OSI-approved licenses.
@@ -170,6 +171,17 @@ def analyze(_evidence, current)
170171
confidence: 3,
171172
explanation: 'GitHub API implementation language analysis'
172173
}
174+
175+
# Check for tags
176+
tag_data = client.tags fullname
177+
tags = tag_data.map { |tag| tag[:name] }.sort
178+
if tags.any? { |tag| tag.match?(/^v?\d+\.\d+\.\d+$/) }
179+
results[:version_tags] = {
180+
value: tags,
181+
confidence: 2,
182+
explanation: 'GitHub tags'
183+
}
184+
end
173185
end
174186

175187
results

0 commit comments

Comments
 (0)