Fix macOS Swift SDK selection #42
Workflow file for this run
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
| # Generated by npx required-checks-auditor | |
| name: Audit Required PR Checks | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [opened, ready_for_review, reopened, synchronize] | |
| branch_protection_rule: | |
| types: [created, edited, deleted] | |
| permissions: | |
| contents: read | |
| checks: read | |
| statuses: read | |
| jobs: | |
| required-checks-auditor: | |
| name: Required checks auditor | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: audit | |
| uses: biw/required-checks-auditor@v1.0.4 | |
| with: | |
| target-branch: main | |
| wait-seconds: 10 | |
| - name: Upload starter ruleset | |
| if: ${{ failure() && steps.audit.outputs['ruleset-artifact-path'] != '' }} | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: required-checks-ruleset | |
| path: ${{ steps.audit.outputs['ruleset-artifact-path'] }} | |
| if-no-files-found: error |