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 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.