Files
clan-core/pkgs/pending-reviews/script.sh
2023-11-15 13:48:52 +01:00

11 lines
386 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