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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-08-20 13:50:27 +0300
committerGitHub <noreply@github.com>2020-08-20 13:50:27 +0300
commit2e912990ff63ca364a070243594b174e0ec9868b (patch)
tree56e64c9399cc1b8b42f22be23876caf9c79bba2e /.github
parentebc80dba789415cedda003baee3af391531860b2 (diff)
This is just to trigger the GitHub scheduled actions registration
It is needed for #22314 and I will revert it right away afterwards. Sorry for the trouble. See the answer in https://stackoverflow.com/questions/59560214/github-action-works-on-push-but-not-scheduled
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/php.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml
new file mode 100644
index 00000000000..b5dc4d34e80
--- /dev/null
+++ b/.github/workflows/php.yml
@@ -0,0 +1,17 @@
+name: PHP Composer
+
+on:
+ schedule:
+ - cron: '*/5 * * * *'
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Validate composer.json and composer.lock
+ run: composer validate
+