Skip to content

Commit e85ddb2

Browse files
authored
Correct number of closing brackets with opening brackets.
1 parent fbb69ee commit e85ddb2

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/close-project-issues.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -77,32 +77,32 @@ jobs:
7777
column_name=${{ github.event.inputs.column_name }}
7878
issues=$(gh api graphql -f query='
7979
query ($org: String!, $number: Int!) {
80-
organization(login: $org) {
81-
projectV2(number: $number) {
82-
items(first: 100) {
83-
nodes {
84-
content {
85-
... on Issue {
86-
number
87-
}
80+
organization(login: $org) {
81+
projectV2(number: $number) {
82+
items(first: 100) {
83+
nodes {
84+
content {
85+
... on Issue {
86+
number
8887
}
89-
fieldValueByName(name: "Status") {
90-
... on ProjectV2ItemFieldSingleSelectValue {
91-
name
92-
}
88+
}
89+
fieldValueByName(name: "Status") {
90+
... on ProjectV2ItemFieldSingleSelectValue {
91+
name
9392
}
9493
}
9594
}
9695
}
9796
}
9897
}
99-
}' -f org=$org_name -F number=$project_number --jq '
98+
}'
99+
-f org=$org_name -F number=$project_number --jq '
100100
[
101101
.data.organization.projectV2.items.nodes[]
102102
| select(.fieldValueByName.name == "'"$column_name"'")
103103
| .content.number
104104
] | join(" ")
105-
')
105+
')
106106
107107
echo "issues=$issues" >> $GITHUB_ENV
108108
echo "Issues: $issues"

0 commit comments

Comments
 (0)