Docs: add rails console commands for deleting sidekiq jobs to troubleshooting page
How to pick and delete specific update_merge_requests
queue jobs from sidekiq queues
queue=Sidekiq::Queue.new('update_merge_requests')
queue.each { |job| job.delete if job.args[0]==<project_id> and job.args[4]=='<source branch>' }