Skip to content

Commit 6b055f1

Browse files
targosBethGriggs
authored andcommitted
build: run workflows when a PR is ready for review
Add `ready_for_review` to the activity types for the pull_request event. PR-URL: #39405 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 6d63965 commit 6b055f1

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

.github/workflows/build-tarball.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Build from tarball
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
push:
67
branches:
78
- master

.github/workflows/build-windows.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: build-windows
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
push:
67
branches:
78
- master

.github/workflows/coverage-linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: coverage-linux
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
paths-ignore:
67
- 'doc/**'
78
- 'deps/**'

.github/workflows/coverage-windows.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: coverage-windows
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
paths-ignore:
67
- 'doc/**'
78
- 'deps/**'

.github/workflows/linters.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: linters
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
push:
67
branches:
78
- master

.github/workflows/misc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: misc
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
push:
67
branches:
78
- master

.github/workflows/test-asan.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
paths-ignore:
1212
- 'doc/**'
1313
pull_request:
14+
types: [opened, synchronize, reopened, ready_for_review]
1415
paths-ignore:
1516
- 'doc/**'
1617

.github/workflows/test-linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: test-linux
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
push:
67
branches:
78
- master

.github/workflows/test-macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: test-macOS
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
paths-ignore:
67
- 'doc/**'
78
push:

0 commit comments

Comments
 (0)