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

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-02-18 22:16:11 +0300
committerGitHub <noreply@github.com>2020-02-18 22:16:11 +0300
commitdac933819f777e2788a6dc629dce132015fd9fb6 (patch)
treee37d03214089e8499d1ed9b270d492436b874fa2
parent9be7159d0a39d2e517a02515253b003b3264a3e8 (diff)
parent3dfa2b8199a2b7fed1562069d1f2a0dbeca258cc (diff)
Merge pull request #878 from nextcloud/fix/actions
Run actions on push as well
-rw-r--r--.github/workflows/build.yml1
-rw-r--r--.github/workflows/lint.yml7
-rw-r--r--.github/workflows/test.yml1
3 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6fb9d8eb..ef4eb705 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -1,6 +1,7 @@
name: Build
on:
pull_request:
+ push:
branches:
- master
- stable*
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index e3023437..1c2b753f 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -1,5 +1,10 @@
name: Lint
-on: pull_request
+on:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable*
jobs:
php-linters:
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index d7139a8e..95bcc738 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,6 +1,7 @@
name: Test
on:
pull_request:
+ push:
branches:
- master
- stable*