diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2018-09-27 00:23:21 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-27 00:23:21 +1000 |
commit | d4e0861ff94a809ad36c6b951c1e903457c44def (patch) | |
tree | 6c31fb3654db25b72f1afe94da60daabd20689a2 /scripts-dev | |
parent | Merge branch 'develop' into rav/hacky_cache_factor_fix (diff) | |
download | synapse-d4e0861ff94a809ad36c6b951c1e903457c44def.tar.xz |
Reduce the load on our CI (#3957)
* changelog * reduce circleci config * plus a handy script * fix regex
Diffstat (limited to 'scripts-dev')
-rwxr-xr-x | scripts-dev/next_github_number.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts-dev/next_github_number.sh b/scripts-dev/next_github_number.sh new file mode 100755 index 0000000000..376280025a --- /dev/null +++ b/scripts-dev/next_github_number.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +set -e + +# Fetch the current GitHub issue number, add one to it -- presto! The likely +# next PR number. +CURRENT_NUMBER=`curl -s "https://api.github.com/repos/matrix-org/synapse/issues?state=all&per_page=1" | jq -r ".[0].number"` +CURRENT_NUMBER=$((CURRENT_NUMBER+1)) +echo $CURRENT_NUMBER \ No newline at end of file |