Since https://gerrit.wikimedia.org/r/#/c/pywikibot/core/+/595192/ Jenkins sometimes fails to merge up-to-date (rebased) patchsets and fails to run. These jobs are not even available in Jenkins job view (https://integration.wikimedia.org/ci/view/Pywikibot/job/pywikibot-core-tox-publish/). After few attempts to recheck, everything goes back to normal usually. This occurs for all types of actions (patchset, merge, post-merge). There must be some issue with the trigger.
Explanation
Whenever tags are updated in pywikibot/core (stable and python2 tags), the zuul-merger will rejects any further merge attempts because it can not update the tag. It is a change of behavior in git 2.20 shipped by Buster which now reject tag updates (unless using --force or allowing the reference update by prefixing the refspec with a +.
Workaround
On each of the servers hosting zuul-merger, manually force update the tags:
ssh contint1001.wikimedia.org sudo -u zuul git -C /srv/zuul/git/pywikibot/core fetch --force --tags -v origin ssh contint2001.wikimedia.org sudo -u zuul git -C /srv/zuul/git/pywikibot/core fetch --force --tags -v origin
