cla-assistant / cla-assistant

Contributor License Agreement assistant (CLA assistant)

Home Page:https://cla-assistant.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CLA assistant asking me to sign when I've already signed

Grryum opened this issue · comments

I tried to sign CLA in my MR zio/zio#8150
I successfully signed it after clicking on link, but nothing happen than.
Also I could not see any signed CLAs, just empty page:

https://cla-assistant.io/my-cla

Could you please help me with this issue?

I tried almost everything - adding and deleting to account all my emails, changing account settings, manually authorizing to CLA assistant - nothing helped.. Could you at least suggest how and where see logs of this check if it possible for me?

Everything seems to be ok:

No ideas at all...

commented

The two commits you created are done from the email “vlad.ugrum@gmail.com” including the quotes and the quotes are the problem. This is not a valid email.

You need to rewrite the two commits to use your proper email (I assume vlad.ugrum@gmail.com) then following commands should fix it locally:

  • git config --show-scope user.email determine where it is set (e.g. global/local/system)
  • git config --global user.email vlad.ugrum@gmail.com: set the email, make sure to use the same flag as you saw previously
  • git config --show-scope user.email should now show your email without quotes

After fixing the email in your local setup, you need to redo the last two commits and force push the branch.

thank you so much!