Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ workflows:
- test
filters:
branches:
only: develop
only: develop
7 changes: 7 additions & 0 deletions test/helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,11 @@ def get_stats_parsed_string
}.close
get_stats_parsed_string
end

def generate_tag(item_name, tag)
tag_prefix, tag_suffix = tag.split('*') if tag.include?('*')
return tag unless tag_prefix

[tag_prefix, item_name, tag_suffix].join
end
end
Loading