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 08fa704Copy full SHA for 08fa704
.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,11 @@ 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.review.state == 'approved' ||
22
+ github.event.pull_request.author_association == 'OWNER' ||
23
+ github.event.pull_request.author_association == 'COLLABORATOR' ||
24
+ github.event.pull_request.author_association == 'MEMBER'
25
permissions:
26
id-token: write
27
issues: write
0 commit comments