lab132 / buildbot-gitea

Buildbot plugin for integration with gitea.
MIT License
62 stars 21 forks source link

Correct repo_name regex #9

Closed bfueldner closed 4 years ago

bfueldner commented 4 years ago

I'm sorry, my repo_name regex correction missed the trailing dollar sign to match the end of line. This PR should fix it finally.

pampersrocker commented 4 years ago

The dollar sign was never there in the beginning. Is there a case where line end recognition is necessary?

bfueldner commented 4 years ago

After installing the latest package (v1.2.1) I recognized that repo_name only includes the first character of the repository name. Looking at your example on https://regex101.com/r/EWzUKJ/2/ there problem was clearly to reproduce if I remove the trailing dollar sign.

pampersrocker commented 4 years ago

Ah, I see. Thanks!