-
Notifications
You must be signed in to change notification settings - Fork 168
[ENG-1188] Move parent subaccount transfer filtering to SQL to respect limit parameter #3234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 4 commits
f01efaa
100d95a
c6c2278
27a2ba6
33ba5b4
1e63100
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -6,6 +6,7 @@ on: # yamllint disable-line rule:truthy | |||
| - main | ||||
| - 'release/protocol/v[0-9]+.[0-9]+.x' # e.g. release/protocol/v0.1.x | ||||
| - 'release/protocol/v[0-9]+.x' # e.g. release/protocol/v1.x | ||||
| - davidli/transfers_endpoint | ||||
|
||||
| - davidli/transfers_endpoint |
🤖 Prompt for AI Agents
.github/workflows/protocol-build-and-push-snapshot.yml around line 9: remove the
development branch trigger entry "davidli/transfers_endpoint" from the workflow
triggers so the CI does not run on that branch after merging; update the
workflow file to delete that line (or remove the branch from the branches list)
and commit the change so the workflow no longer triggers for the development
branch.
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -6,6 +6,7 @@ on: # yamllint disable-line rule:truthy | |||||||
| - main | ||||||||
| - 'release/protocol/v[0-9]+.[0-9]+.x' # e.g. release/protocol/v0.1.x | ||||||||
| - 'release/protocol/v[0-9]+.x' # e.g. release/protocol/v1.x | ||||||||
| - davidli/transfers_endpoint | ||||||||
|
||||||||
| - davidli/transfers_endpoint | |
| - 'release/protocol/v[0-9]+.[0-9]+.x' # e.g. release/protocol/v0.1.x | |
| - 'release/protocol/v[0-9]+.x' # e.g. release/protocol/v1.x |
🤖 Prompt for AI Agents
In .github/workflows/protocol-build-and-push.yml around line 9, the workflow
currently lists a personal development branch (davidli/transfers_endpoint) in
its branch trigger; remove that branch entry so the workflow no longer triggers
on that personal branch (either delete the line or replace it with the intended
protected branch names such as main or release branches), then save the workflow
to prevent CI from running for the development branch after merge.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove development branch trigger before merging.
Same as in the protocol workflow, this development branch trigger should be removed before merging to main.
Apply this diff:
- 'release/indexer/v[0-9]+.[0-9]+.x' # e.g. release/indexer/v0.1.x - 'release/indexer/v[0-9]+.x' # e.g. release/indexer/v1.x - - davidli/transfers_endpoint📝 Committable suggestion
🤖 Prompt for AI Agents