Create phpunit-summary-when-unrelated.yml

Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
This commit is contained in:
John Molakvoæ 2023-07-10 12:11:59 +02:00 коммит произвёл GitHub
Родитель 1445dbe479
Коммит 0650d113c6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 68 добавлений и 0 удалений

68
.github/workflows/phpunit-summary-when-unrelated.yml поставляемый Normal file
Просмотреть файл

@ -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 summary
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"'