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

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2021-12-28 18:09:42 +0300
committerJulius Härtl <jus@bitgrid.net>2021-12-28 18:09:42 +0300
commitf9c9144510dcd68a75af507d8130a1d6aaeab501 (patch)
tree6d93b066130cde7e030656677c2bfc1426c6de58
parentfa80d9e424b4dbf64cf75d4a24e8c57d5aaea893 (diff)
Run github actions also on master/stable branchestests/github-ci-branches
Signed-off-by: Julius Härtl <jus@bitgrid.net>
-rw-r--r--.github/workflows/cypress.yml7
-rw-r--r--.github/workflows/lint.yml7
-rw-r--r--.github/workflows/static-analysis.yml7
3 files changed, 18 insertions, 3 deletions
diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml
index 260b813cf..675bcc89f 100644
--- a/.github/workflows/cypress.yml
+++ b/.github/workflows/cypress.yml
@@ -1,6 +1,11 @@
name: Cypress
-on: [push]
+on:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable*
env:
APP_NAME: text
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index f1cbbdcef..fc1e1a37f 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/static-analysis.yml b/.github/workflows/static-analysis.yml
index 4f40268c6..0c073ef9c 100644
--- a/.github/workflows/static-analysis.yml
+++ b/.github/workflows/static-analysis.yml
@@ -1,6 +1,11 @@
name: Static analysis
-on: [pull_request]
+on:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable*
jobs:
static-psalm-analysis: