We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aef8968 commit 5ee66f9Copy full SHA for 5ee66f9
.github/workflows/ci.yml
@@ -7,7 +7,7 @@ permissions:
7
contents: read
8
9
concurrency:
10
- group: ${{ github.ref }}
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11
cancel-in-progress: true
12
13
jobs:
@@ -31,6 +31,10 @@ jobs:
31
WP_ADMIN_PASSWORD: admin
32
WP_ADMIN_EMAIL: admin@test.test
33
34
+ if: |
35
+ github.event_name == 'push' ||
36
+ (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == true)
37
+
38
runs-on: ${{ matrix.os }}
39
40
name: PHP ${{ matrix.php-version }} on ${{ matrix.os }}
0 commit comments