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

github.com/nextcloud/announcementcenter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-10-17 18:04:00 +0300
committerJoas Schilling <coding@schilljs.com>2022-10-17 18:04:00 +0300
commit52f2e1a536e0cb07718e062b3c39b9f2dd431f21 (patch)
treee327858f411f1820e89fba20041822c40dade39f
parent81e53020128fc71f6d22d31bc3737bf1821a4477 (diff)
Limit pull request runs
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.github/workflows/phpunit.yml14
1 files changed, 13 insertions, 1 deletions
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index 17987c5..d8351be 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -1,6 +1,18 @@
name: PHPUnit
-on: pull_request
+on:
+ pull_request:
+ paths:
+ - '.github/workflows/**'
+ - 'appinfo/**'
+ - 'lib/**'
+ - 'templates/**'
+ - 'tests/**'
+ - 'vendor/**'
+ - 'vendor-bin/**'
+ - '.php-cs-fixer.dist.php'
+ - 'composer.json'
+ - 'composer.lock'
concurrency:
group: lint-phpunit-${{ github.head_ref || github.run_id }}