Skip to content

Commit c1f9f74

Browse files
committed
Remove unnecessary comments for JSON storage in get-project-column-ids.yml
1 parent 5ab82b6 commit c1f9f74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/get-project-column-ids.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
console.log(`Project "${name}" = Project ID: "${id}"`);
5252
});
5353
54-
core.setOutput("project_ids", JSON.stringify(projectIds)); # ✅ Safe JSON storage
54+
core.setOutput("project_ids", JSON.stringify(projectIds));
5555
5656
# ✅ Step 2: Fetch Column IDs
5757
- name: Get Column IDs
@@ -115,4 +115,4 @@ jobs:
115115
});
116116
});
117117
118-
core.setOutput("columns", JSON.stringify(columnData)); # ✅ Safe JSON storage
118+
core.setOutput("columns", JSON.stringify(columnData));

0 commit comments

Comments
 (0)