diff --git a/.github/workflows/node-tests.yml b/.github/workflows/node-tests.yml index 6251c548..e0c79509 100644 --- a/.github/workflows/node-tests.yml +++ b/.github/workflows/node-tests.yml @@ -2,9 +2,13 @@ name: Node Tests on: pull_request: + branches: + - develop + types: [ opened, synchronize, reopened, ready_for_review ] jobs: node-tests: + if: github.event.pull_request.draft == false uses: alleyinteractive/.github/.github/workflows/node-tests.yml@main with: ci: true diff --git a/.github/workflows/phpcs.yml b/.github/workflows/phpcs.yml index 6929e16a..1ebaa122 100644 --- a/.github/workflows/phpcs.yml +++ b/.github/workflows/phpcs.yml @@ -10,7 +10,7 @@ jobs: phpcs: strategy: matrix: - php: [ 8.0 ] + php: [ 8.2 ] if: github.event.pull_request.draft == false uses: alleyinteractive/.github/.github/workflows/php-coding-standards.yml@main with: diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 48e674cc..7abb72b5 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -2,6 +2,9 @@ name: Testing Suite on: pull_request: + branches: + - develop + types: [ opened, synchronize, reopened, ready_for_review ] jobs: php-tests: @@ -9,6 +12,7 @@ jobs: matrix: php: ['8.2', '8.1', '8.0', '7.4'] wordpress: ["latest"] + if: github.event.pull_request.draft == false uses: alleyinteractive/.github/.github/workflows/php-tests.yml@main with: command: "test"