Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Generated by Django 5.2.12 on 2026-05-12

from django.db import migrations
from django.db import models
from django_safemigrate import Safe


class Migration(migrations.Migration):
safe = Safe.before_deploy()

dependencies = [
("projects", "0164_show_build_overview_in_comment_default_true"),
]

operations = [
migrations.AlterField(
model_name="historicalproject",
name="external_builds_enabled",
field=models.BooleanField(
default=True,
help_text='More information in <a href="https://docs.readthedocs.io/page/guides/autobuild-docs-for-pull-requests.html">our docs</a>.',
verbose_name="Build pull requests for this project",
),
),
migrations.AlterField(
model_name="project",
name="external_builds_enabled",
field=models.BooleanField(
default=True,
help_text='More information in <a href="https://docs.readthedocs.io/page/guides/autobuild-docs-for-pull-requests.html">our docs</a>.',
verbose_name="Build pull requests for this project",
),
),
]
2 changes: 1 addition & 1 deletion readthedocs/projects/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ class Project(models.Model):
# External versions
external_builds_enabled = models.BooleanField(
_("Build pull requests for this project"),
default=False,
default=True,
help_text=_(
'More information in <a href="https://docs.readthedocs.io/page/guides/autobuild-docs-for-pull-requests.html">our docs</a>.' # noqa
),
Expand Down