Browse Source

ci: Turn off builds for pushes and merges to master/stable*

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/10811/head
Joas Schilling 2 years ago
parent
commit
cbc11389b6
No known key found for this signature in database GPG Key ID: 74434EFE0D2E2205
  1. 8
      .github/workflows/integration-mysql.yml
  2. 8
      .github/workflows/integration-oci.yml
  3. 7
      .github/workflows/integration-pgsql.yml
  4. 8
      .github/workflows/integration-sqlite.yml
  5. 3
      .github/workflows/lint-eslint.yml
  6. 8
      .github/workflows/lint-info-xml.yml
  7. 8
      .github/workflows/lint-php.yml
  8. 8
      .github/workflows/node.yml
  9. 6
      .github/workflows/occ-command-documentation.yml
  10. 7
      .github/workflows/openapi.yml
  11. 7
      .github/workflows/phpunit-mysql.yml
  12. 7
      .github/workflows/phpunit-oci.yml
  13. 7
      .github/workflows/phpunit-pgsql.yml
  14. 7
      .github/workflows/phpunit-sqlite.yml
  15. 8
      .github/workflows/psalm.yml

8
.github/workflows/integration-mysql.yml

@ -10,12 +10,8 @@ on:
paths:
# Only running on PR for this file to save CI time (otherwise pgsql only)
- '.github/workflows/integration-mysql.yml'
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"
permissions:
contents: read

8
.github/workflows/integration-oci.yml

@ -10,12 +10,8 @@ on:
paths:
# Only running on PR for this file to save CI time (otherwise pgsql only)
- '.github/workflows/integration-oci.yml'
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"
permissions:
contents: read

7
.github/workflows/integration-pgsql.yml

@ -7,11 +7,8 @@ name: Integration pgsql
on:
pull_request:
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"
permissions:
contents: read

8
.github/workflows/integration-sqlite.yml

@ -10,12 +10,8 @@ on:
paths:
# Only running on PR for this file to save CI time (otherwise pgsql only)
- '.github/workflows/integration-sqlite.yml'
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"
permissions:
contents: read

3
.github/workflows/lint-eslint.yml

@ -8,8 +8,7 @@
name: Lint eslint
on:
pull_request:
on: pull_request
permissions:
contents: read

8
.github/workflows/lint-info-xml.yml

@ -5,13 +5,7 @@
name: Lint info.xml
on:
pull_request:
push:
branches:
- main
- master
- stable*
on: pull_request
permissions:
contents: read

8
.github/workflows/lint-php.yml

@ -5,13 +5,7 @@
name: Lint php
on:
pull_request:
push:
branches:
- main
- master
- stable*
on: pull_request
permissions:
contents: read

8
.github/workflows/node.yml

@ -5,13 +5,7 @@
name: Node
on:
pull_request:
push:
branches:
- main
- master
- stable*
on: pull_request
permissions:
contents: read

6
.github/workflows/occ-command-documentation.yml

@ -14,12 +14,6 @@ on:
- 'composer.json'
- 'composer.lock'
push:
branches:
- main
- master
- stable*
permissions:
contents: read

7
.github/workflows/openapi.yml

@ -1,11 +1,6 @@
name: OpenAPI
on:
pull_request:
push:
branches:
- master
- stable*
on: pull_request
permissions:
contents: read

7
.github/workflows/phpunit-mysql.yml

@ -7,11 +7,8 @@ name: PHPUnit mysql
on:
pull_request:
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"
permissions:
contents: read

7
.github/workflows/phpunit-oci.yml

@ -7,11 +7,8 @@ name: PHPUnit OCI
on:
pull_request:
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"
permissions:
contents: read

7
.github/workflows/phpunit-pgsql.yml

@ -7,11 +7,8 @@ name: PHPUnit pgsql
on:
pull_request:
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"
permissions:
contents: read

7
.github/workflows/phpunit-sqlite.yml

@ -7,11 +7,8 @@ name: PHPUnit sqlite
on:
pull_request:
push:
branches:
- main
- master
- stable*
schedule:
- cron: "5 2 * * *"
permissions:
contents: read

8
.github/workflows/psalm.yml

@ -5,13 +5,7 @@
name: Static analysis
on:
pull_request:
push:
branches:
- master
- main
- stable*
on: pull_request
concurrency:
group: psalm-${{ github.head_ref || github.run_id }}

Loading…
Cancel
Save