Skip to content

Commit

Permalink
Remove deprecated configuration for prebuilds in Gitpod integration
Browse files Browse the repository at this point in the history
Gitpod Prebuilds configuration via .gitpod.yml has been deprecated, see relevant changelog and relevant docs.
  • Loading branch information
gtsiolis authored Sep 10, 2024
1 parent db8f042 commit 01aa72e
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions content/en/user-guide/integrations/gitpod/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

View workflow job for this annotation

GitHub Actions / Markdown Lint

Trailing spaces

content/en/user-guide/integrations/gitpod/index.md:63:178 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md009.md

Check failure on line 63 in content/en/user-guide/integrations/gitpod/index.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

Trailing spaces

content/en/user-guide/integrations/gitpod/index.md:63:178 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md009.md

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).
Expand Down

0 comments on commit 01aa72e

Please sign in to comment.