[IMP] runbot_merge: track PR label

It's not modified super often, but seems important to track if it
happens to be modified.
This commit is contained in:
Xavier Morel 2024-07-15 15:55:44 +02:00
parent 4a40c0338c
commit 82ec48c8da

View File

@ -383,7 +383,7 @@ class PullRequests(models.Model):
author = fields.Many2one('res.partner', index=True)
head = fields.Char(required=True, tracking=True)
label = fields.Char(
required=True, index=True,
required=True, index=True, tracking=True,
help="Label of the source branch (owner:branchname), used for "
"cross-repository branch-matching"
)