File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 99 directory : " /" # Location of package manifests
1010 schedule :
1111 interval : " weekly"
12+ - package-ecosystem : " docker"
13+ directory : " /" # Location of .gitpod.yml
14+ schedule :
15+ interval : " weekly"
Original file line number Diff line number Diff line change 1+ image : gitpod/workspace-java-21:2025-09-22-12-51-14
2+
3+ github :
4+ prebuilds :
5+ # Enable for the default branch
6+ main : true
7+ # Enable for all branches
8+ branches : true
9+ # Enable for pull requests coming from this repo
10+ pullRequests : true
11+ # Enable for pull requests coming from forks
12+ pullRequestsFromForks : false
13+ # Add a check to pull requests
14+ addCheck : true
15+ # Add a "Review in Gitpod" button as a comment to pull requests
16+ addComment : true
17+ # Add a "Review in Gitpod" button to the pull request's description
18+ addBadge : false
19+
20+ tasks :
21+ - name : Maven Build
22+ # Prebuild: install dependencies and compile
23+ init : mvn -B -DskipTests=true install
24+ # Ready: just run tests to verify everything works
25+ command : mvn -q test && echo "✅ Workspace ready! All tests passed."
26+
27+ vscode :
28+ extensions :
29+ - vscjava.vscode-java-pack
You can’t perform that action at this time.
0 commit comments