Skip to content

Commit

Permalink
[GHA] Call the reusable package workflow
Browse files Browse the repository at this point in the history
# 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.
  • Loading branch information
FranzBusch committed Jul 11, 2024
1 parent c4641be commit 14a9d7c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 14a9d7c

Please sign in to comment.