Skip to content
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
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
- package-ecosystem: "docker"
directory: "/" # Location of .gitpod.yml
schedule:
interval: "weekly"
29 changes: 29 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
image: gitpod/workspace-java-21:2025-09-22-12-51-14

github:
prebuilds:
# Enable for the default branch
main: true
# Enable for all branches
branches: true
# Enable for pull requests coming from this repo
pullRequests: true
# Enable for pull requests coming from forks
pullRequestsFromForks: false
# Add a check to pull requests
addCheck: true
# Add a "Review in Gitpod" button as a comment to pull requests
addComment: true
# Add a "Review in Gitpod" button to the pull request's description
addBadge: false

tasks:
- name: Maven Build
# Prebuild: install dependencies and compile
init: mvn -B -DskipTests=true install
# Ready: just run tests to verify everything works
command: mvn -q test && echo "✅ Workspace ready! All tests passed."

vscode:
extensions:
- vscjava.vscode-java-pack