PLEX-3005 Run PR CI for capabilities-development branch#467
Merged
Fletch153 merged 1 commit intoJun 3, 2026
Conversation
PRs targeting capabilities-development never ran the required ci-lint / ci-test-* checks (the workflow only triggered for main and releases), so they could never satisfy branch protection or enter the merge queue. Add capabilities-development to the pull_request branch filter.
|
| Version | Value |
|---|---|
| Current Fork | `` |
| Latest Upstream | v1.17.3 |
Action Required
- Review abigen changes in upstream (only the
accounts/abi/binddirectory matters) - Compare with our fork in
cmd/generate-bindings/bindings/abigen/ - If relevant changes exist, sync them and update
FORK_METADATA.md - If no abigen changes, just update the version in
FORK_METADATA.mdtov1.17.3
⚠️ Potential Security-Related Commits Detected
- p2p/nat: bump pion/stun to v3 to pull in fixed pion/dtls (#34980) (link)
- build: upgrade -dlgo version to Go 1.25.10 (#34911) (link)
Files to Review
cmd/generate-bindings/bindings/abigen/bind.gocmd/generate-bindings/bindings/abigen/bindv2.gocmd/generate-bindings/bindings/abigen/template.go
cc @smartcontractkit/bix-framework
anirudhwarrier
approved these changes
Jun 3, 2026
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.
Summary
capabilities-developmentto thepull_requestbranch filter inpull-request-main.ymlso the required CI runs for PRs targeting it.Context
PRs into
capabilities-developmentnever triggered the required checks (ci-lint,ci-lint-misc,ci-test-unit,ci-test-e2eubuntu/windows) — the workflow only fired formain/releases/**. Those checks are required by the branch ruleset, so they sat permanently pending: PRs couldn't satisfy protection or enter the merge queue (deadlock). Surfaced while merging the Aptos mock-forwarder address change (#465), which targetscapabilities-development.Changes
.github/workflows/pull-request-main.yml: addcapabilities-developmenttoon.pull_request.branches.Notes
pull_requestevents GitHub reads the workflow from the base branch, so this fix only takes effect for PRs intocapabilities-developmentonce it also exists oncapabilities-development(via the normalmain→capabilities-developmentmerge after this lands).