From 34d1bbf3b0b0d0a16ca2951dd55f61099c2e1bc6 Mon Sep 17 00:00:00 2001 From: Mishal Shah Date: Fri, 27 Sep 2024 21:27:25 -0700 Subject: [PATCH 1/2] [CI] GitHub Actions support for Linux platform --- .github/workflows/pull_request.yml | 10 ++++++++++ 1 file changed, 10 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 000000000..1de636c5f --- /dev/null +++ b/.github/workflows/pull_request.yml @@ -0,0 +1,10 @@ +name: pull_request + +on: + pull_request: + types: [opened, reopened, synchronize] + +jobs: + tests: + name: tests + uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main From ab48e0f4e89c0b791315a54ebf66356faffc8665 Mon Sep 17 00:00:00 2001 From: Mishal Shah Date: Fri, 27 Sep 2024 21:32:21 -0700 Subject: [PATCH 2/2] Add CODEOWNERS file --- CODEOWNERS | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 000000000..fdeb9b7ac --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,14 @@ +# +# This source file is part of the Swift.org open source project +# +# Copyright (c) 2024 Apple Inc. and the Swift project authors +# Licensed under Apache License v2.0 with Runtime Library Exception +# +# See https://swift.org/LICENSE.txt for license information +# See https://swift.org/CONTRIBUTORS.txt for Swift project authors +# + +* @ahoppen @allevato @bnbarham @shawnhyam + +.github/ @shahmishal +.swiftci/ @shahmishal