File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : Pull request
2
2
3
3
on :
4
- pull_request :
5
- types : [opened, reopened, synchronize]
4
+ # pull_request:
5
+ # types: [opened, reopened, synchronize]
6
+ pull_request_review :
7
+ types : [submitted, edited]
6
8
7
9
concurrency :
8
10
group : ${{ github.workflow }}-${{ github.ref }}
@@ -12,11 +14,13 @@ jobs:
12
14
tests :
13
15
name : Test
14
16
uses : swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
17
+ if : (github.event_name == 'pull_request') || (github.event_name == 'pull_request_review' && contains(github.event.review.state, 'Re-run GitHub Actions'))
15
18
with :
16
19
linux_exclude_swift_versions : " [{\" swift_version\" : \" 5.8\" }]"
17
20
soundness :
18
21
name : Soundness
19
22
uses : swiftlang/github-workflows/.github/workflows/soundness.yml@main
23
+ if : (github.event_name == 'pull_request') || (github.event_name == 'pull_request_review' && contains(github.event.review.state, 'Re-run GitHub Actions'))
20
24
with :
21
25
license_header_check_project_name : " Swift.org"
22
26
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