summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-11-25 11:44:32 +0100
committerJoas Schilling <coding@schilljs.com>2022-12-07 20:20:06 +0100
commit266dcb1e5915c7b8d14e6c1bb63f767e32172cf5 (patch)
tree4f6604b1b73833297d921244b01f4bdc2851140d /.github
parentce78bf41e263f7211c99c745c222f77fe6dcdf09 (diff)
Allow enabling lobbies on breakout rooms and hide the initial system message
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/phpunit-summary-when-unrelated.yml68
1 files changed, 68 insertions, 0 deletions
diff --git a/.github/workflows/phpunit-summary-when-unrelated.yml b/.github/workflows/phpunit-summary-when-unrelated.yml
new file mode 100644
index 000000000..53ca3096b
--- /dev/null
+++ b/.github/workflows/phpunit-summary-when-unrelated.yml
@@ -0,0 +1,68 @@
+# 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: PHPUnit
+
+on:
+ pull_request:
+ paths-ignore:
+ - '.github/workflows/**'
+ - 'appinfo/**'
+ - 'lib/**'
+ - 'templates/**'
+ - 'tests/**'
+ - 'vendor/**'
+ - 'vendor-bin/**'
+ - '.php-cs-fixer.dist.php'
+ - 'composer.json'
+ - 'composer.lock'
+
+permissions:
+ contents: read
+
+jobs:
+ summary-mysql:
+ permissions:
+ contents: none
+ runs-on: ubuntu-latest
+
+ name: phpunit-mysql-summary
+
+ steps:
+ - name: Summary status
+ run: 'echo "No PHP files changed, skipped PHPUnit"'
+
+ summary-oci:
+ permissions:
+ contents: none
+ runs-on: ubuntu-latest
+
+ name: phpunit-oci-summary
+
+ steps:
+ - name: Summary status
+ run: 'echo "No PHP files changed, skipped PHPUnit"'
+
+ summary-pgsql:
+ permissions:
+ contents: none
+ runs-on: ubuntu-latest
+
+ name: phpunit-pgsql-summary
+
+ steps:
+ - name: Summary status
+ run: 'echo "No PHP files changed, skipped PHPUnit"'
+
+ summary-sqlite:
+ permissions:
+ contents: none
+ runs-on: ubuntu-latest
+
+ name: phpunit-sqlite-summary
+
+ steps:
+ - name: Summary status
+ run: 'echo "No PHP files changed, skipped PHPUnit"'