Skip to content

Commit

Permalink
Update trigger event location in GitHub workflows
Browse files Browse the repository at this point in the history
This commit repositions the list of trigger event types in .github/workflows/phpunit.yml, .github/workflows/phpcs.yml, and .github/workflows/node-tests.yml from under "branches" to directly under "pull_request". This modification accurately reflects the intended YAML syntax, ensuring that the workflows are triggered properly for the specified pull request events, namely
  • Loading branch information
attackant committed Oct 31, 2023
1 parent d5f0ea9 commit 3eb5afa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Node Tests

on:
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
branches:
- develop
types: [ opened, synchronize, reopened, ready_for_review ]

jobs:
node-tests:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpcs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: PHP Coding Standards

on:
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
branches:
- develop
types: [ opened, synchronize, reopened, ready_for_review ]

jobs:
phpcs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Testing Suite

on:
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
branches:
- develop
types: [ opened, synchronize, reopened, ready_for_review ]

jobs:
php-tests:
Expand Down

0 comments on commit 3eb5afa

Please sign in to comment.