Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,12 @@ from users switching to the new release, include the string "action required".

```

**Do all end-to-end tests successfully pass when running `make e2e-test`?**:
<!--
Please provide a snippet of a successful `make e2e-test` run to confirm.
-->
```

```

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
6 changes: 2 additions & 4 deletions .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@ permissions:
id-token: write
contents: read
on:
# TODO: Find a secure enough way to run e2e tests from PR on-demand.
push:
branches:
- main
merge_group:
branches: [ "main" ]
workflow_dispatch:
jobs:
e2e-test:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/presubmit.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: presubmit
on:
push:
branches:
- main
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
golangci-lint:
Expand Down
5 changes: 3 additions & 2 deletions test/suites/integration/ram_share_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,11 @@ var _ = Describe("RAM Share", Ordered, func() {
secondaryTestRoleArn = os.Getenv("SECONDARY_ACCOUNT_TEST_ROLE_ARN")

retryer := awsClient.DefaultRetryer{
MinThrottleDelay: 1 * time.Second,
MinRetryDelay: 1 * time.Second,
MinThrottleDelay: 500 * time.Millisecond,
MinRetryDelay: 500 * time.Millisecond,
MaxThrottleDelay: 5 * time.Second,
MaxRetryDelay: 5 * time.Second,
NumMaxRetries: 5,
}

primarySess := session.Must(session.NewSession(&aws.Config{
Expand Down