Can I use GitHub Actions to raise PR in external source control system? [closed]

Is it possible to use GitHub Actions to detect if a PR has been raised and then raise another PR with the same changes in another source control system, like GitLab, Azure DevOps, Bitbucket, etc.?

  • 2

    Can you trigger a workflow on a PR being opened? Yes, that’s a common use case. Can that workflow then interact with other systems? Yes, you can run more-or-less arbitrary code in your workflow.

    – 

  • Thanks Jon, do you have an example or some docs you can share on how to do this?

    – 

Leave a Comment