Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(gh-enterprise): Add support for github enterprise servers #631

Merged
merged 1 commit into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# [2.1.0](https://github.com/NerdWalletOSS/shepherd/compare/v2.0.1...v2.1.0) (2023-10-03)


### Features

* **workflow:** use semantic-pr-check in favor of semantic pull request app ([#622](https://github.com/NerdWalletOSS/shepherd/issues/622)) ([e780137](https://github.com/NerdWalletOSS/shepherd/commit/e780137e184172d540066b196e1fdec25e999042))
- **workflow:** use semantic-pr-check in favor of semantic pull request app ([#622](https://github.com/NerdWalletOSS/shepherd/issues/622)) ([e780137](https://github.com/NerdWalletOSS/shepherd/commit/e780137e184172d540066b196e1fdec25e999042))

## [2.0.1](https://github.com/NerdWalletOSS/shepherd/compare/v2.0.0...v2.0.1) (2023-10-03)

Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ Install the Shepherd CLI:
npm install -g @nerdwallet/shepherd
```

If using GitHub Enterprise, ensure the following environment variable is exported:

```
export SHEPHERD_GITHUB_ENTERPRISE_URL={company_github_enterprise_url} # e.g., github.test.com
```

If using ssh, ensure that your GITHUB_TOKEN is exported:

```
export GITHUB_TOKEN=<PAT>
```

Shepherd will now be available as the `shepherd` command in your shell:

```sh
Expand Down
Loading
Loading