pr-size-labeler icon indicating copy to clipboard operation
pr-size-labeler copied to clipboard

Repeats the "this pr is too big" message

Open TheTechRobo opened this issue 3 years ago • 15 comments

whenever i push it repeats it. really annoying as i keep getting notifications for nothing.

TheTechRobo avatar Aug 16 '20 21:08 TheTechRobo

Hi!

As you can see in this example, it publishes the mentioned comment one time for each Workflow execution. That is, it depends on your on clause configuration (example).

Could you please link or attach your yaml configuration and a screenshot of the duplicated message in a PR? (Wipe out sensible information if that's the case)

This could help debugging or reproducing the issue 🙂

Thanks!

JavierCane avatar Aug 17 '20 05:08 JavierCane

name: labeler

on: [pull_request]

jobs:
  labeler:
    runs-on: ubuntu-latest
    name: Label the PR size
    steps:
      - uses: codelytv/pr-size-labeler@v1
        with:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          xs_max_size: '10'
          s_max_size: '100'
          m_max_size: '500'
          l_max_size: '1000'
          fail_if_xl: 'false'
          message_if_xl: 'This PR is extremely big! Please, split it 😊'

image

TheTechRobo avatar Aug 17 '20 14:08 TheTechRobo

Thanks for the information! 🙌

As we can see in the screenshot, it publishes a comment regarding the PR size being too big for every new commit, that is, on every chance the PR has had to modify its size.

We could have some kind of logic taking into account the previous labels. I mean:

  1. Check if the PR already have the size/xl label and if that's the case: 1.a. If it's still too big, publish a comment like "This PR is still too big 😬" 1.b. If it has been reduced from size/xl to any other size, publish a comment like "Congrats! 🎉 You have reduced the PR size successfully!"

What do you think? Would it be better?

JavierCane avatar Aug 19 '20 06:08 JavierCane

What do you think? Would it be better?

Yeah! It would also be nice to be able to set e.g. it will check the size every commit, but for commits on the same day it will not say this, i.e. the first commit on august 21 will have the message, but subsequent commits on that day will not show the message, andthe first commit on august 22 will have the message etc to reduce clutter.

TheTechRobo avatar Aug 19 '20 14:08 TheTechRobo

Could it also delete previous xl comments if it's adding another one?

kymikoloco avatar Dec 01 '20 00:12 kymikoloco

Oh yeah, that would be great to reduce clutter.

TheTechRobo avatar Dec 01 '20 03:12 TheTechRobo

Was this fixed?? I cant find a commit that proves this, but....

image

Over 21 hours, only 1 message from the bot. :thinking:

TheTechRobo avatar Dec 17 '20 21:12 TheTechRobo

nvm, i think it was a bug with github actions

TheTechRobo avatar Dec 18 '20 03:12 TheTechRobo

How's this for a potential solution for deleting? Non-battle tested code (the query seems to work, I didn't run the DELETE) that will remove all previous comments. It should be called before you add a new comment.

# Delete existing messages from the GitHub Actions Bot user that match the $comment
local -r comment_id_list=$(curl -sSL \
    -H "Authorization: token $GITHUB_TOKEN" \
    -H "$GITHUB_API_HEADER" \
    -X GET \
    "$GITHUB_API_URI/repos/$GITHUB_REPOSITORY/issues/$pr_number/comments" \
        | jq -r --arg comment "$comment" '.[] | select(.user.type == "Bot")| select(.user.login == "github-actions[bot]")| select(.body == $comment ) | .id' )

for id in $comment_id_list; do
    curl -sSL \
        -H "Authorization: token $GITHUB_TOKEN" \
        -H "$GITHUB_API_HEADER" \
        -X DELETE \
        "$GITHUB_API_URI/repos/$GITHUB_REPOSITORY/issues/comments/$id"
done

I think this will just have a string of 'comment deleted by' in place of the comments themselves, so I think the 'comment every commit' is still too much.

kymikoloco avatar Apr 22 '21 21:04 kymikoloco

We could in theory impl this with something like this:

https://github.com/aaimio/set-persistent-value

(and its sister repo, https://github.com/aaimio/get-persistent-value)

Basically the persistent value would be a JSON array of PRs that it's already said "This PR is too big!" on, and the script could check the PR against that array

TheTechRobo avatar Dec 31 '21 04:12 TheTechRobo

This sticky comment action has a few variations of behavior for replacing or hiding PR comments, so it might be a good reference for an implementation to fix this issue (I haven't had a chance to poke around to see how it works, yet).

EngJay avatar Nov 21 '22 20:11 EngJay

Here's the trick - the sticky comment action inserts a comment to use as a means to find the PR comment and replace it.

The h here is the comment text inserted when the comment is made, which is also how the action can post multiple comments for different steps in one job. It has an option to set a string that differentiates the comments.

    const target = repository.pullRequest?.comments?.nodes?.find(
      (node: IssueComment | null | undefined) =>
        node?.author?.login === viewer.login.replace("[bot]", "") &&
        !node?.isMinimized &&
        node?.body?.includes(h)
    )

EngJay avatar Nov 21 '22 22:11 EngJay

I just thought of something: Maybe you could provide a label name that, if the PR has that label, will prevent the bot from commenting.

That way if there's a known big PR, you can work around this issue by adding that label.

TheTechRobo avatar Jan 13 '23 17:01 TheTechRobo