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 64e5619 commit 020ac62Copy full SHA for 020ac62
dist/index.js
index.js
@@ -70,12 +70,8 @@ const getData = () => {
70
}
71
}`;
72
73
- core.debug('Before 1st query');
74
-
75
const {resource} = await octokit.graphql(fetchColumnQuery);
76
77
- core.debug('After 1st query');
78
79
// All the matching projects found
80
const repoProjects = resource.repository.projects.nodes || [];
81
const orgProjects = (resource.repository.owner &&
@@ -118,7 +114,6 @@ const getData = () => {
118
114
119
115
console.log(`✅ ${action === 'opened' ? 'Added' : 'Moved'} card to ${column} in ${project}`);
120
116
} catch (error) {
121
- console.log('failed here actually');
122
117
core.error(error);
123
core.setFailed(error.message);
124
0 commit comments