Skip to content

Commit 04fc995

Browse files
authored
[GHA] Call the reusable package workflow (#588)
# Motivation We are migrating our CI over to GH actions. We have created a reusable workflow inside the NIO repository that we want to move into a separate repo in the future. For testing purposes let's try out calling the reusable workflow from the this repo as well. # Modification Add a GH actions workflow that calls the reusable package workflow.
1 parent c4641be commit 04fc995

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/pull_request.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Pull Request
2+
3+
on:
4+
pull_request:
5+
types: [opened, reopened, synchronize, ready_for_review]
6+
7+
jobs:
8+
call-reusable-pull-request-workflow:
9+
name: Checks
10+
uses: apple/swift-nio/.github/workflows/reusable_pull_request.yml
11+
with:
12+
benchmarks_linux_enabled: false
13+
license_header_check_project_name: "SwiftOpenAPIGenerator"

0 commit comments

Comments
 (0)