From 6859f2bc290461e204db58cde679fdd097afd42b Mon Sep 17 00:00:00 2001 From: Jonathan Grynspan Date: Sun, 14 Sep 2025 12:42:56 -0400 Subject: [PATCH 1/2] Add a stub update-version.yml file for testing. GitHub Action workflows can't be tested until they exist on main in some form. This PR adds an empty copy of update-version.yml in order to allow me to test it. (We can delete this file if we don't move forward with merging the actual workflow.) --- .github/workflows/update-version.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/update-version.yml diff --git a/.github/workflows/update-version.yml b/.github/workflows/update-version.yml new file mode 100644 index 000000000..3726e61f3 --- /dev/null +++ b/.github/workflows/update-version.yml @@ -0,0 +1,12 @@ +# This source file is part of the Swift.org open source project +# +# Copyright (c) 2025 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 the list of Swift project authors + +name: Update Swift Testing version + +on: + pull_request: From 0b3d50ea2cef38f75b9c821ac6c410bd8eaec9b7 Mon Sep 17 00:00:00 2001 From: Jonathan Grynspan Date: Sun, 14 Sep 2025 12:45:29 -0400 Subject: [PATCH 2/2] Add mandatory jobs line --- .github/workflows/update-version.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/update-version.yml b/.github/workflows/update-version.yml index 3726e61f3..364bf6697 100644 --- a/.github/workflows/update-version.yml +++ b/.github/workflows/update-version.yml @@ -10,3 +10,5 @@ name: Update Swift Testing version on: pull_request: + +jobs: