We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64c8a7c commit 27ff27fCopy full SHA for 27ff27f
.github/workflows/get-project-column-ids.yml
@@ -94,27 +94,3 @@ jobs:
94
core.setOutput("columns", "{}");
95
return;
96
}
97
-
98
- // Fetch columns for each project
99
- let columns = {};
100
- for (const [projectName, projectId] of Object.entries(projectIds)) {
101
- const columnsQuery = `query($projectId: ID!) {
102
- node(id: $projectId) {
103
- ... on ProjectV2 {
104
- fields(first: 10) {
105
- nodes {
106
- ... on ProjectV2SingleSelectField {
107
- id
108
- name
109
- options {
110
111
112
- }
113
114
115
116
117
118
- }`;
119
120
- const columnsResult = await github.graphql(columnsQuery, { projectId });
0 commit comments