aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2024-06-09 10:35:21 +0200
committerRichard Steinmetz <richard@steinmetz.cloud>2024-06-09 10:35:21 +0200
commitea6d0d350c8b5387dd1b4f3ac3b407cdea559f98 (patch)
tree2ff82d8cefa1d254a1b0a3032154ae4881f452ae /.github
parent09abd43ee07596baaba646d70072f4ea7c549c0d (diff)
downloadnextcloud-server-ea6d0d350c8b5387dd1b4f3ac3b407cdea559f98.tar.gz
nextcloud-server-ea6d0d350c8b5387dd1b4f3ac3b407cdea559f98.zip
ci(eol): update workflow from template
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/block-merge-eol.yml13
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/block-merge-eol.yml b/.github/workflows/block-merge-eol.yml
index 4099cf62b42..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
@@ -20,18 +23,18 @@ jobs:
# Only run on stableXX branches
if: startsWith( github.base_ref, 'stable')
- runs-on: ubuntu-latest
+ 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