Skip to content

Commit

Permalink
Add yml2
Browse files Browse the repository at this point in the history
Signed-off-by: p-wysocki <[email protected]>
  • Loading branch information
p-wysocki committed Jan 16, 2025
1 parent 5dc0490 commit 232c5c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/assigned_issue_to_column.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
const statusOptionId = statusOption.id;
const itemQuery = `
query($projectId: ID!, $issueId: ID!) {
query($projectId: ID!) {
node(id: $projectId) {
... on ProjectV2 {
items(first: 100) {
Expand All @@ -108,7 +108,7 @@ jobs:
}
`;
const itemResult = await github.graphql(itemQuery, { projectId, issueId });
const itemResult = await github.graphql(itemQuery, { projectId });
const item = itemResult.node.items.nodes.find(i => i.content.id === issueId);
if (!item) {
Expand Down

0 comments on commit 232c5c3

Please sign in to comment.