Skip to content

Commit

Permalink
Update query-issue-info.js
Browse files Browse the repository at this point in the history
  • Loading branch information
t-will-gillis authored Jul 20, 2024
1 parent 5b9e775 commit 7967cd5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions github-actions/utils/query-issue-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async function queryIssueInfo(issueNum, github, context) {
repo: context.repo.repo,
issueNum: issueNum
};
/*

try {
const response = await github.graphql(query, variables);
console.log(response);
Expand All @@ -58,8 +58,8 @@ async function queryIssueInfo(issueNum, github, context) {
throw new Error(`Error finding Issue #${issueNum} id and status; error = ${error}`);
}

*/


/*
const response = await github.graphql(query, variables);
console.log(response);
// Extract the list of project items associated with the issue
Expand All @@ -81,7 +81,7 @@ async function queryIssueInfo(issueNum, github, context) {
console.log(`status: ${statusName}`);
// console.log(`Success! For Issue #${ISSUE_NUMBER}, found id = '${id}' and status = '${statusName}'`);
return { id, statusName };

*/
}

module.exports = queryIssueInfo;

0 comments on commit 7967cd5

Please sign in to comment.