Comment on Ask HN: What are your favorite GitHub actions/bots?parentComments−jaimehrubiks2yYou can do it in two ways:1. In the other repo, setup a webhook type of action event. And call it from the original repo2. From the original repo, clone, change and push code in the other repo. Create an action event from push/pull-request/other.On both cases you need a github token, either for accessing the other repo, or for calling the webhook.
Comments
You can do it in two ways:
1. In the other repo, setup a webhook type of action event. And call it from the original repo
2. From the original repo, clone, change and push code in the other repo. Create an action event from push/pull-request/other.
On both cases you need a github token, either for accessing the other repo, or for calling the webhook.