Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/custom-github-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ You can now set up gitStream for a single repo, your GitHub organization or acro
```yaml+jinja
--8<-- "docs/downloads/gitstream.cm"
```

**GitHub Actions**

Once your gitStream configuration file is set up, you will need to create a Github Actions configuration file to trigger gitStream automations. Create a `.github/workflows/gitstream.yml` file in your `cm` repository's default branch (usually `master` or `main`) and add the following configuration:
Expand Down Expand Up @@ -255,6 +256,7 @@ You can now set up gitStream for a single repo, your GitHub organization or acro
```yaml+jinja
--8<-- "docs/downloads/gitstream.cm"
```

**GitHub Actions**

Once your gitStream configuration file is set up, you will need to create a Github Actions configuration file to trigger gitStream automations. Create a `.github/workflows/gitstream.yml` file in your `cm` repository's default branch (usually `master` or `main`) and add the following configuration:
Expand All @@ -273,3 +275,12 @@ You can now set up gitStream for a single repo, your GitHub organization or acro
│ └─ workflows/
│ └─ gitstream.yml
```

## 12. GitHub Enterprise Setup

When running gitStream on GitHub Enterprise, you need to manually "clone" the following actions since runners don't connect to the internet:

1. gitStream action: `gitstream-github-action`
2. Official GitHub actions like: `actions/checkout`, `actions/setup-node`, `actions/github-script`, etc.

You'll need to pull these actions manually so the runner can use them.