You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This changes adds additional fields for tracking whether a commit to
llvm-project is a revert and what commit/pull request it is reverting.
Such commits are detecting by pattern matching against the commit
message.
Copy file name to clipboardExpand all lines: premerge/bigquery_schema/llvm_commits_table_schema.json
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,24 @@
47
47
"mode": "REPEATED",
48
48
"description": "List of GitHub users who reviewed the pull request for this commit"
49
49
},
50
+
{
51
+
"name": "is_revert",
52
+
"type": "BOOLEAN",
53
+
"mode": "NULLABLE",
54
+
"description": "Whether or not this commit is a revert"
55
+
},
56
+
{
57
+
"name": "pull_request_reverted",
58
+
"type": "INTEGER",
59
+
"mode": "NULLABLE",
60
+
"description": "Pull request matched in revert message. Not reliable for determining if a PR was reverted, `commit_reverted` may contain a commit belonging to a PR"
61
+
},
62
+
{
63
+
"name": "commit_reverted",
64
+
"type": "STRING",
65
+
"mode": "NULLABLE",
66
+
"description": "Commit sha matched in revert message. Not reliable for determining if a commit was reverted, `pull_request_reverted` may contain a PR contributing a commit"
0 commit comments