diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2022-01-26 09:38:21 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-01-27 09:05:30 +0100 |
commit | deb735ed85e683aba6360d95f880b5846f61399e (patch) | |
tree | 20b69805ca5c259dc3c0338aea8b01e4874ff0e7 /.github | |
parent | 936f9dc596f9fe49ab1a9de0642ecb3983a4b2e6 (diff) | |
download | nextcloud-server-deb735ed85e683aba6360d95f880b5846f61399e.tar.gz nextcloud-server-deb735ed85e683aba6360d95f880b5846f61399e.zip |
Prevent merging on EOL branches
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/block-merge-eol.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/block-merge-eol.yml b/.github/workflows/block-merge-eol.yml new file mode 100644 index 00000000000..a24acea15a0 --- /dev/null +++ b/.github/workflows/block-merge-eol.yml @@ -0,0 +1,30 @@ +# This workflow is provided via the organization template repository +# +# https://github.com/nextcloud/.github +# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization + +name: Pull request checks + +on: pull_request + +jobs: + block-merges-eol: + name: Block merges for EOL branches + + # Only run on stableXX branches + if: startsWith( github.base_ref, 'stable') + runs-on: ubuntu-latest + + steps: + - name: Download updater config + run: curl https://raw.githubusercontent.com/nextcloud/updater_server/production/config/config.php --output config.php + + - name: Set server major version environment + run: | + # retrieve version number from branch reference + server_major=$(echo "${{ github.base_ref }}" | sed -En 's/stable//p') + echo "server_major=$server_major" >> $GITHUB_ENV + + - name: Checking if ${{ env.server_major }} is EOL + run: | + php -r 'echo json_encode(require_once "config.php");' | jq --arg version "${{ env.server_major }}" '.stable[$version]["100"].eol' | grep --silent -i 'false' |