File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ name: Pull request
2
2
3
3
on :
4
4
pull_request :
5
- types : [opened, reopened, synchronize]
5
+ # types: [opened, reopened, synchronize]
6
+ types : [ready_for_review]
6
7
7
8
concurrency :
8
9
group : ${{ github.workflow }}-${{ github.ref }}
@@ -12,11 +13,13 @@ jobs:
12
13
tests :
13
14
name : Test
14
15
uses : swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
16
+ if : (github.event.action != 'ready_for_review') || (github.event.action == 'ready_for_review' && github.event.pull_request.user.login == 'github-actions[bot]')
15
17
with :
16
18
linux_exclude_swift_versions : " [{\" swift_version\" : \" 5.8\" }]"
17
19
soundness :
18
20
name : Soundness
19
21
uses : swiftlang/github-workflows/.github/workflows/soundness.yml@main
22
+ if : (github.event.action != 'ready_for_review') || (github.event.action == 'ready_for_review' && github.event.pull_request.user.login == 'github-actions[bot]')
20
23
with :
21
24
license_header_check_project_name : " Swift.org"
22
25
api_breakage_check_allowlist_path : " api-breakages.txt"
Original file line number Diff line number Diff line change
1
+ name : Pull request comment
2
+
3
+ on :
4
+ issue_comment :
5
+ types : [created]
6
+
7
+ jobs :
8
+ run_pr_tests :
9
+ uses : ./.github/workflows/pull_request.yml
You can’t perform that action at this time.
0 commit comments