Add PR build validation and Dependabot auto-merge - #9
Merged
Conversation
This repo had no pull_request-triggered CI at all (only a tag-triggered release workflow) and no auto-merge workflow, so Dependabot PRs never got validated or merged automatically like the rest of the org's repos. - build.yml: runs mvn verify (compile + the 10 existing unit tests + package) on every PR to main. Verified locally before pushing. - dependabot-auto-merge.yaml: same approve+auto-merge pattern used in toeggelomat/agoora-agents/sdm-proto-api.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
to-json-smt had no
pull_request-triggered CI at all (only a tag-triggeredrelease.yml) and no Dependabot auto-merge workflow — unlike the rest of the org's repos, Dependabot PRs here never got built/tested or auto-merged.Changes
build.yml: runsmvn -B verify(compile + the 10 existing unit tests + package) on every PR tomain. Tested locally before pushing.dependabot-auto-merge.yaml: same approve + auto-merge pattern already used in toeggelomat/agoora-agents/sdm-proto-api — auto-approves and enables auto-merge for Dependabot PRs (native GitHub auto-merge still waits for thebuildcheck to pass).Once merged, worth also adding
buildas a required status check in branch protection (currently there's none configured since no check existed before) — happy to do that too if wanted.