GitHub Action to publish subdirectories to separate GitHub repositories.
When building Gatsby Themes with a monorepo it's common to need to
be able to develop your corresponding starters in the same repo as
well. This allows you to automatically push your starters to their
own repo so they can be used with gatsby new
.
name: Publish Starters
on: push
jobs:
master:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: publish:starters
uses: design4pro/actions-github-push-subdirectories@master
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: starters design4pro
The GITHUB_TOKEN
will automatically be defined, the GH_TOKEN
needs to be set in the Secrets
section of your repository options. You can retrieve the GH_TOKEN
here (set the repo
permission).
The action accepts three arguments - the first two are mandatory, the third (key from package.json
), four (GitHub email) and five branch name, are optional.
- Name of the folder that contains your examples. Even if you only have one example currently it also should be placed inside its own folder (e.g.
starters/foo-bar
) as the script will read all folders inside the examples. - GitHub username
- Repository name of the respective example. By default the
name
key from the example'spackage.json
is used, e.g. thename
of your example isgatsby-starter-foobar
, then the script will try to push togithub.com/USERNAME/gatsby-starter-foobar
. - Branch name (optional) -
main
default - GitHub email (optional)
You could define the key starter-name
in your example's package.json
, like:
{
"starter-name": "gatsby-starter-foobar",
}
Use the action with the third argument now:
args: starters design4pro starter-name master