From cbb3e34762ef08811c1d25c941246f294564484c Mon Sep 17 00:00:00 2001 From: "Kohei Ota (inductor)" Date: Mon, 20 Apr 2026 15:20:52 +0900 Subject: [PATCH 1/2] [CI] Add automated release workflow using swift-temporal-sdk --- .github/workflows/auto-release.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/auto-release.yml diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml new file mode 100644 index 0000000..f90455f --- /dev/null +++ b/.github/workflows/auto-release.yml @@ -0,0 +1,12 @@ +name: Auto Release + +on: + workflow_dispatch: + +permissions: + contents: write + pull-requests: read + +jobs: + auto-release: + uses: apple/swift-temporal-sdk/.github/workflows/auto-release.yml@main From 077d368b9b76bdac5053ccd767ffab5767a03a34 Mon Sep 17 00:00:00 2001 From: inductor Date: Mon, 20 Apr 2026 15:21:47 +0900 Subject: [PATCH 2/2] Update CONTRIBUTING.md with automated release process documentation --- CONTRIBUTING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bb6886c..1dde3f2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -105,3 +105,7 @@ For a smooth review process, your PR should be: - **Documented**: Add DocC comments for any new public APIs. Once submitted, a maintainer will review your code, provide feedback, and merge it once it's approved. Thank you for your contribution! + +## Automated release process + +This repository uses automated releases based on semantic versioning labels. See the [Auto Release Workflow documentation](https://github.com/apple/swift-temporal-sdk/blob/main/.github/workflows/README.md) for details.