From 04fc9950c3579142e71ff5e6437e5b71d62e8e2c Mon Sep 17 00:00:00 2001 From: Franz Busch Date: Fri, 12 Jul 2024 09:14:37 +0200 Subject: [PATCH] [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. --- .github/workflows/pull_request.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/pull_request.yml diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml new file mode 100644 index 00000000..3deb249a --- /dev/null +++ b/.github/workflows/pull_request.yml @@ -0,0 +1,13 @@ +name: Pull Request + +on: + pull_request: + types: [opened, reopened, synchronize, ready_for_review] + +jobs: + call-reusable-pull-request-workflow: + name: Checks + uses: apple/swift-nio/.github/workflows/reusable_pull_request.yml + with: + benchmarks_linux_enabled: false + license_header_check_project_name: "SwiftOpenAPIGenerator" \ No newline at end of file