You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/integration-tests.yml
+57-20Lines changed: 57 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,23 @@ on:
5
5
# Run at 7pm PST (3am UTC next day) Monday-Friday
6
6
# This translates to Tuesday-Saturday 3am UTC
7
7
- cron: '0 3 * * 2-6'
8
+
release:
9
+
types: [published, edited]
10
+
# published → latest-release binary test (full releases only)
11
+
# edited + prerelease → nightly binary test (nightly pre-release gets edited with new artifacts)
8
12
workflow_dispatch: # Allow manual triggering
9
13
# NOTE: This workflow can only be manually triggered from develop or main branches
10
14
# The other branch will not pass the OIDC permission check
15
+
inputs:
16
+
install_mode:
17
+
description: '"code" to install from source (make init), "nightly-release" to install SAM CLI nightly binary, "latest-release" to install latest stable release binary'
# NOTE (lucashuy): `pytest-json-report` was updated to `pytest-json-report-wip` as the original repository does not seem to be maintained anymore, if `-wip` is updated, validate the changes
0 commit comments