marky004
marky004

Reputation: 67

GitHub Actions: Copy a file from a repo to my own

I want to copy one particular file from another GitHub repo to my own GitHub repo (both are public repos). How do I do this?

Upvotes: 1

Views: 4302

Answers (1)

Mushroomator
Mushroomator

Reputation: 9258

For example you could use the curl Action to download the file and then push the file to the repository like described in this thread.

Another option is described in this thread.

Upvotes: 1

Related Questions