Skip to content

Commit 9ba93b2

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

1 file changed

Lines changed: 12 additions & 13 deletions

File tree

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

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,18 @@ 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
}
@@ -102,7 +101,7 @@ jobs:
102101
| select(.fieldValueByName.name == "'"$column_name"'")
103102
| .content.number
104103
] | join(" ")
105-
')
104+
')
106105
107106
echo "issues=$issues" >> $GITHUB_ENV
108107
echo "Issues: $issues"

0 commit comments

Comments
 (0)