We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b755cab commit dde3ac6Copy full SHA for dde3ac6
1 file changed
.github/workflows/pull-request-build.yml
@@ -2,6 +2,13 @@ name: Build SDK
2
on:
3
merge_group:
4
pull_request_target:
5
+ push:
6
+ branches:
7
+ - master
8
+ paths-ignore:
9
+ - '**.md'
10
+ - '.all-contributorsrc'
11
+ - 'docs/**'
12
13
concurrency:
14
group: start-pull-request-build-${{ github.event.pull_request.number || github.ref }}
@@ -13,7 +20,9 @@ env:
20
21
jobs:
15
22
aws-sdk-pr-build:
16
- if: github.event_name == 'merge_group' || github.event.pull_request.draft == false
23
+ if: >
24
+ github.event_name != 'pull_request_target' ||
25
+ github.event.pull_request.draft == false
17
26
runs-on: ubuntu-latest
18
27
permissions:
19
28
id-token: write
0 commit comments