Skip to content

Commit

Permalink
chore: update star-fork-notification trigger condition
Browse files Browse the repository at this point in the history
  • Loading branch information
tisfeng committed Jun 1, 2024
1 parent 30dd06d commit 381033d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/star_fork_notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:
echo "commit_count=$commit_count" >> $GITHUB_ENV
echo "follower_count=$follower_count" >> $GITHUB_ENV
if [[ $commit_count -ge 0 ]]; then
echo "user_conditions_met=true" >> $GITHUB_ENV
if [[ $earn_star_count -ge 10 || $commit_count -gt 1000 ]]; then
echo "user_conditions_met=true" >> $GITHUB_ENV
else
echo "user_conditions_met=false" >> $GITHUB_ENV
fi
Expand Down

0 comments on commit 381033d

Please sign in to comment.