Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2022-04-15 09:28:51 +0300
committerGitHub <noreply@github.com>2022-04-15 09:28:51 +0300
commit55da6166a82638ab3d66266160887e97a56d045f (patch)
tree530462a2b2a154adb21369728f87ef822291ecb3
parent4e886f5c3cc35c1701fffcaf995f30fc031a1f45 (diff)
Create block-merge-eol.ymlv24.0.0rc3v24.0.0rc2v24.0.0
-rw-r--r--.github/workflows/block-merge-eol.yml30
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 0000000..a24acea
--- /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'