Add auto-merger workflow to periodically merge main into release bran… #46
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: main branch, 6.2 toolchain | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| name: Test | |
| uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main | |
| with: | |
| linux_swift_versions: '["nightly-6.2"]' | |
| linux_os_versions: '["amazonlinux2", "jammy"]' | |
| windows_swift_versions: '["nightly-6.2"]' | |
| enable_macos_checks: true | |
| macos_exclude_xcode_versions: '[{"xcode_version": "16.2"}, {"xcode_version": "16.3"}, {"xcode_version": "16.4"}]' | |
| enable_wasm_sdk_build: true |