1
0
forked from clan/clan-core
clan-core/pkgs/pending-reviews/script.sh

11 lines
389 B
Bash

#!/usr/bin/env bash
set -euo pipefail
display_pr() { jq -r '.[] | "- \(.url) | \(.title) from @\(.user.login)"'; }
echo "# Review needed"
curl -s 'https://git.clan.lol/api/v1/repos/clan/clan-core/pulls?state=closed&sort=leastupdate&labels=8' | display_pr
echo "# Changes requested"
curl -s 'https://git.clan.lol/api/v1/repos/clan/clan-core/pulls?sort=leastupdate&labels=9' | display_pr