Skip to content

Commit

Permalink
Merge branch 'master' into feature/gh-action2
Browse files Browse the repository at this point in the history
  • Loading branch information
danimtb committed Oct 5, 2023
2 parents 264b09a + dd4ec69 commit b85d6f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/prs_user_limit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ runs:
# Check the number of open PRs and the specified limit
if len(user_open_prs) > limit:
# Post a comment on the current pull request if the limit is reached
user_open_prs_str = "#" + ", #".join(user_open_prs)
user_open_prs_str = "#" + ", #".join([str(pr.number) for pr in user_open_prs])
user_open_prs_len = len(user_open_prs)
comment_text = comment.format(limit=limit, username=username, user_open_prs_str=user_open_prs_str, user_open_prs_len=user_open_prs_len)
pr.create_issue_comment(comment_text)

0 comments on commit b85d6f8

Please sign in to comment.