We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5406743 commit e50ad16Copy full SHA for e50ad16
.github/workflows/main.yml
@@ -13,7 +13,15 @@ concurrency:
13
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
14
15
jobs:
16
+ authorize:
17
+ name: Authorize
18
+ environment: ${{ github.event.pull_request.head.repo.fork && 'external' || 'internal' }}
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - run: true
22
+
23
test:
24
+ needs: authorize # Require approval before running on forked pull requests
25
name: Test on ${{ matrix.platform.os }} using Xcode ${{ matrix.xcode }}
26
runs-on: macos-13
27
0 commit comments