get status from github api

This commit is contained in:
Bryan Gerlach
2026-03-10 23:58:13 -05:00
parent d186b7dd02
commit 8adecbfc1d
3 changed files with 25 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.0.3 on 2026-03-11 04:58
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rdgenerator', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='githubrun',
name='github_run_id',
field=models.BigIntegerField(blank=True, null=True),
),
]