Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
typo
  • Loading branch information
candiduslynx committed Apr 10, 2023
commit 70bd1d765add4a2028467c1fe489b5268e2d2251
2 changes: 1 addition & 1 deletion .github/workflows/wait_for_required_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
})).filter(({ id }) => !processed.includes(id)) // we filter out the runs we already processed

// save to processed
processed = [...processed, ...checkRuns.map(({ id }) => ({ id }))]
processed = [...processed, ...checkRuns.map(({ id }) => id )]

const runs = checkRuns.map(({ id, name, conclusion }) => ({ id, name, conclusion }))
console.log(`Got the following check runs: ${JSON.stringify(runs)}`)
Expand Down