Skip to content

Commit d55cf39

Browse files
authored
[CI] Add missing field for pull request BQ table (#822)
#797 introduced a new field for pull request data, `pull_request_state`. However, this field was mistakenly left out of the BigQuery schema which causes daily workflows to fail when trying to upload data.
1 parent ed27cff commit d55cf39

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

premerge/bigquery_schema/llvm_pull_requests_table_schema.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
"mode": "NULLABLE",
3030
"description": "Number of the pull request."
3131
},
32+
{
33+
"name": "pull_request_state",
34+
"type": "STRING",
35+
"mode": "NULLABLE",
36+
"description": "The state of this pull request (OPEN, MERGED, etc)"
37+
},
3238
{
3339
"name": "associated_commit",
3440
"type": "STRING",

0 commit comments

Comments
 (0)