0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-17 11:03:46 +02:00
synapse/scripts-dev/next_github_number.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
308 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
# Fetch the current GitHub issue number, add one to it -- presto! The likely
# next PR number.
2023-12-13 17:37:10 +01:00
CURRENT_NUMBER=$(curl -s "https://api.github.com/repos/element-hq/synapse/issues?state=all&per_page=1" | jq -r ".[0].number")
CURRENT_NUMBER=$((CURRENT_NUMBER+1))
echo $CURRENT_NUMBER