We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a298d2 commit 3950c79Copy full SHA for 3950c79
1 file changed
.github/actions/file/src/index.ts
@@ -88,6 +88,19 @@ export default async function () {
88
screenshotRepo,
89
)
90
filing.issue.state = 'reopened'
91
+
92
+ // TEMP: only to test this is working
93
+ if (shouldOpenGroupedIssues) {
94
+ core.info('grouped issue within repeated filing')
95
+ const problemShort: string = filing.findings[0].problemShort
96
+ if (!newIssuesByProblemShort[problemShort]) {
97
+ newIssuesByProblemShort[problemShort] = []
98
+ }
99
+ newIssuesByProblemShort[problemShort].push({
100
+ url: response.data.html_url,
101
+ id: response.data.number,
102
+ })
103
104
}
105
if (response?.data && filing.issue) {
106
// Update the filing with the latest issue data
0 commit comments