I tried the below to list out all remote branches in GitHub but even though I'm specifying the 1 year 'since' parameter it still shows all remote branches:
git branch -r --merged | grep -v "master" | xargs -I {} bash -c 'if [ `git log --since="1 year ago" -s -n1 --pretty=format:%ct {}` ]; then echo {}; fi'