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 9cd9415 commit 4c5f3e3Copy full SHA for 4c5f3e3
.github/workflows/pull-request-build.yml
@@ -1,5 +1,7 @@
1
name: Build SDK
2
on:
3
+ pull_request:
4
+ types: [ready_for_review]
5
pull_request_review:
6
types: [ submitted ]
7
branches: [ main ]
@@ -15,8 +17,10 @@ env:
15
17
16
18
jobs:
19
aws-sdk-pr-build:
- if: github.event.review.state == 'approved'
- runs-on: ubuntu-latest
20
+ if: |
21
+ github.event.pull_request.author_association == 'OWNER' ||
22
+ github.event.pull_request.author_association == 'COLLABORATOR' ||
23
+ github.event.pull_request.author_association == 'MEMBER'
24
permissions:
25
id-token: write
26
issues: write
0 commit comments