You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When making a PR to master, Danger is run. Recently, I upgraded the Danger configuration so that it checks the PR body for incomplete tasks, replacing task-list-completed. However, Danger reports these tasks in reverse order, whether or not they are completed. I understand why this happens, but it's annoying.
When making a PR to
master
, Danger is run. Recently, I upgraded the Danger configuration so that it checks the PR body for incomplete tasks, replacingtask-list-completed
. However, Danger reports these tasks in reverse order, whether or not they are completed. I understand why this happens, but it's annoying.Here's the code that does it:
DiceKit/Dangerfile.swift
Lines 103 to 125 in e8876a1
It should be relatively simple to reverse it — probably just
allTaskLines.enumerated().reversed()
The text was updated successfully, but these errors were encountered: