aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>2024-06-06 15:11:11 +0200
committerBenjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>2024-06-06 15:46:44 +0200
commit6e2b86040b5ddf4799f74632d4538ef5e6ddb961 (patch)
tree4c5dce67845596ef0be8453227c96bfd9bd76b5b
parentfd9f8b5eab4b995d8dd0bf6a9e3000948094b008 (diff)
downloadnextcloud-server-test/eol-check.tar.gz
nextcloud-server-test/eol-check.zip
Test EOL checktest/eol-check
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
-rw-r--r--.github/workflows/block-merge-eol.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/block-merge-eol.yml b/.github/workflows/block-merge-eol.yml
index 95f9a3a55d9..292494c72cd 100644
--- a/.github/workflows/block-merge-eol.yml
+++ b/.github/workflows/block-merge-eol.yml
@@ -2,6 +2,9 @@
#
# https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
+#
+# SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors
+# SPDX-License-Identifier: MIT
name: Block merges for EOL
@@ -23,15 +26,15 @@ jobs:
runs-on: ubuntu-latest-low
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
+ echo "current_month=$(date +%Y-%m)" >> $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 // .beta[$version]["100"].eol // "NotEOL"' | grep -q "NotEOL"
+ curl -s https://raw.githubusercontent.com/nextcloud-releases/updater_server/production/config/major_versions.json \
+ | jq '.["${{ env.server_major }}"]["eol"] // "9999-99" | . >= "${{ env.current_month }}"' \
+ | grep -q true