audio streaming app plyr.fm
38
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: exclude reverted PR #846 from status maintenance filter (#881)

PR #846 was merged then reverted (#863). Without this exclusion,
the action uses #846's merge date as the time window start and
misses all work from Jan 22 - Feb 7.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4.6
and committed by
GitHub
961d1075 74fffdd3

+2 -2
+2 -2
.github/workflows/status-maintenance.yml
··· 65 65 ```bash 66 66 date 67 67 # get the most recently merged status-maintenance PR (filter by branch name, sort by merge date) 68 - # NOTE: excluding #724 which was reverted - remove this exclusion after next successful run 69 - gh pr list --state merged --search "status-maintenance" --limit 20 --json number,title,mergedAt,headRefName | jq '[.[] | select(.headRefName | startswith("status-maintenance-")) | select(.number != 724)] | sort_by(.mergedAt) | reverse | .[0]' 68 + # NOTE: excluding #724 and #846 which were reverted - remove these exclusions after next successful run 69 + gh pr list --state merged --search "status-maintenance" --limit 20 --json number,title,mergedAt,headRefName | jq '[.[] | select(.headRefName | startswith("status-maintenance-")) | select(.number != 724 and .number != 846)] | sort_by(.mergedAt) | reverse | .[0]' 70 70 git log --oneline -50 71 71 ls -la .status_history/ 2>/dev/null || echo "no archive directory yet" 72 72 wc -l STATUS.md