[llvm] [llvm][GitHub] Move PR project status to Done once backport PR is made (PR #126374)

via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 8 08:35:47 PST 2025


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {darker}-->


:warning: Python code formatter, darker found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
darker --check --diff -r 9d5edc9a0dd35049017aad2a9d3f4a4a2746fec9...3182851273a5c703b21e6f4da7f082bda1371c75 llvm/utils/git/github-automation.py
``````````

</details>

<details>
<summary>
View the diff from darker here.
</summary>

``````````diff
--- github-automation.py	2025-02-08 16:27:21.000000 +0000
+++ github-automation.py	2025-02-08 16:35:21.937678 +0000
@@ -517,31 +517,29 @@
                   }
                 }
               }
             }
         """
-        variables = {
-            "node_id" : pr.node_id
-        }
+        variables = {"node_id": pr.node_id}
         res_header, res_data = gh._Github__requester.graphql_query(
             query=query, variables=variables
         )
         print(res_header)
 
-        for item in res_data['data']['node']['projectItems']['nodes']:
-            project = item['project']
-            if project['number'] != 3:
+        for item in res_data["data"]["node"]["projectItems"]["nodes"]:
+            project = item["project"]
+            if project["number"] != 3:
                 continue
-            status_field = project['field']
-            for option in status_field['options']:
-                if option['name'] != "Done":
+            status_field = project["field"]
+            for option in status_field["options"]:
+                if option["name"] != "Done":
                     continue
                 variables = {
-                    "project" : project["id"],
-                    "item" : item["id"],
-                    "status_field" : status_field["id"],
-                    "status_value" : option["id"],
+                    "project": project["id"],
+                    "item": item["id"],
+                    "status_field": status_field["id"],
+                    "status_value": option["id"],
                 }
 
                 query = """
                     mutation($project: ID!, $item: ID!, $status_field: ID!, $status_value: String!) {
                       set_status:

``````````

</details>


https://github.com/llvm/llvm-project/pull/126374


More information about the llvm-commits mailing list