Skip to content

Commit

Permalink
Add more
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Jul 23, 2024
1 parent 2970606 commit ad09ea8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/generate-hacs-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ jobs:
if (!changedPctTarget) {
if (!parsed.new_count || parsed.new_count <= 0) {
changedPctTarget = 0;
} else if (parsed.new_count > 1500) {
changedPctTarget = 3;
} else if (parsed.new_count > 1000) {
changedPctTarget = 4;
} else if (parsed.new_count > 750) {
changedPctTarget = 5;
} else if (parsed.new_count > 500) {
Expand Down

0 comments on commit ad09ea8

Please sign in to comment.