Closed Tjitse-E closed 2 years ago
I had a similar issue, when I first started using this action. See: https://github.com/derberg/copy-files-to-other-repositories/issues/39#issuecomment-1172971221
If you want it to match development
branches exactly, you would use this ^development$
instead, otherwise it will match any branch that has the name development
in it, and that will likely cause the workflow to create PRs on top of branches it created previously.
I had a similar issue, when I first started using this action. See: #39 (comment)
If you want it to match
development
branches exactly, you would use this^development$
instead, otherwise it will match any branch that has the namedevelopment
in it, and that will likely cause the workflow to create PRs on top of branches it created previously.
Great, that's it! I didn't notice that the branches value was a regex all the time.
Describe the bug
After pushing a new global workflows, some of my repo's return an error. Probably because of the name of the branch is to long.
Error message:
How to Reproduce
I'm not sure how to reproduce this exactly, it happens on a few target repo's. In most repo's the PR is created succesfully.
This is my workflow config:
Expected behavior
A PR is created in the target repo, no errors.