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

github.com/nextcloud/files_videoplayer.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-01-19 19:44:18 +0300
committerGitHub <noreply@github.com>2022-01-19 19:44:18 +0300
commitc5dace42cef21bc8de782d7852f94890df496804 (patch)
tree617e72a7ddc8499f1f8029225e304f824df557bb
parent7eed47bba470ba0f871248560385d7e6f0bbbbf4 (diff)
parent6c10ef482b42a5e16d85403bb5f323272746d41d (diff)
Merge pull request #256 from nextcloud/backport/255/stable23v23.0.4rc1v23.0.4v23.0.3rc2v23.0.3rc1v23.0.3v23.0.2rc1v23.0.2v23.0.1rc3v23.0.1
-rw-r--r--.github/workflows/block-merge-freeze.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/block-merge-freeze.yml b/.github/workflows/block-merge-freeze.yml
new file mode 100644
index 0000000..e56884c
--- /dev/null
+++ b/.github/workflows/block-merge-freeze.yml
@@ -0,0 +1,21 @@
+# 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-during-freeze:
+ name: Block merges during freezes
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Download version.php from ${{ github.base_ref }}
+ run: curl https://raw.githubusercontent.com/nextcloud/server/${{ github.base_ref }}/version.php --output version.php
+
+ - name: Run check
+ run: cat version.php | grep 'OC_VersionString' | grep -i -v 'RC'