-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove deprecated configuration for prebuilds in Gitpod integration
Gitpod Prebuilds configuration via .gitpod.yml has been deprecated, see relevant changelog and relevant docs.
- Loading branch information
Showing
1 changed file
with
1 addition
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,28 +60,7 @@ ports: | |
onOpen: ignore | ||
``` | ||
If you are using GitHub, you can also use the [Gitpod Prebuilds](https://www.gitpod.io/docs/prebuilds/) feature to automatically build your workspace. | ||
This will allow you to start your workspace faster and with all the dependencies already installed. | ||
Add the following to your `.gitpod.yml` file: | ||
|
||
```yaml | ||
github: | ||
prebuilds: | ||
# enable for the default branch | ||
master: true | ||
# enable for all branches in this repo | ||
branches: true | ||
# enable for pull requests coming from this repo | ||
pullRequests: true | ||
# enable for pull requests coming from forks | ||
pullRequestsFromForks: true | ||
# add a check to pull requests | ||
addCheck: true | ||
# add a "Review in Gitpod" button as a comment to pull requests | ||
addComment: false | ||
# add a "Review in Gitpod" button to the pull request's description | ||
addBadge: true | ||
``` | ||
Enabling [Gitpod Prebuilds](https://www.gitpod.io/docs/configure/repositories/prebuilds) can help save time by executing `init` tasks defined in the `.gitpod.yml` ahead of time. | ||
Check failure on line 63 in content/en/user-guide/integrations/gitpod/index.md GitHub Actions / Markdown LintTrailing spaces
Check failure on line 63 in content/en/user-guide/integrations/gitpod/index.md GitHub Actions / Markdown LintTrailing spaces
|
||
|
||
After adding the configuration, you can start your development & testing by creating [your workspace in Gitpod](https://www.gitpod.io/docs/getting-started/#start-your-first-workspace). | ||
Upon creation, you will be able to see the LocalStack container running in the background (you can use `localstack status` to check the status of the container). | ||
|