-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Joas Schilling <[email protected]>
- Loading branch information
1 parent
6c26947
commit 9af2d95
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# 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 | ||
# | ||
# SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors | ||
# SPDX-License-Identifier: MIT | ||
|
||
name: Block merges for EOL | ||
|
||
on: pull_request | ||
|
||
permissions: | ||
contents: read | ||
|
||
concurrency: | ||
group: block-merge-eol-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
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-low | ||
|
||
steps: | ||
- 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: | | ||
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 |