Proceed with next include after another include with GotoIf

i have a context in extensions.conf named MY-AGI, the AGI script replaces the variables with the values in the database matching the caller id, the script works but since i was using this as an include i needed it to proceed with the next include after the include => MY-AGI, currently im using it as a last include without the GotoIf and NoOp, was wondering how to do it if ill be putting the same context in-between other context, anyone?

[MY-AGI]
exten => _1XXXXXXXXXX,1,DeadAGI,my_agi.php
exten => _1XXXXXXXXXX,2,GotoIf($["${MY_PROCEED}" = "yes"]?3:9)
exten => _1XXXXXXXXXX,3,SetCallerID(${MY_CALLERID})
exten => _1XXXXXXXXXX,4,SetAMAFlags(billing)
exten => _1XXXXXXXXXX,5,SetAccount(${MY_ACCOUNTCODE})
exten => _1XXXXXXXXXX,6,SetCDRUserField(${MY_CDRUSERFILED})
exten => _1XXXXXXXXXX,7,Dial(${MY_DIALCOMMAND})
exten => _1XXXXXXXXXX,8,Hangup()
exten => _1XXXXXXXXXX,9,NoOp()

if i issue a NoOp command the entire context gets loaded again and again, what im trying to do is proceed with the other includes/extens (if any exists after include => MY-AGI)