Fix flaky write_with_sse_kms_key_id_ok test (#1140) #1763
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration tests | |
on: | |
push: | |
branches: [ "main", "wf-changes/**" ] | |
merge_group: | |
types: [ "checks_requested" ] | |
schedule: | |
- cron: "45 6 * * *" # Daily at 06:45 UTC | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: "Git reference or commit hash to run the workflow against." | |
required: false | |
type: string | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
integration: | |
if: github.event_name != 'schedule' || github.repository == 'awslabs/mountpoint-s3' | |
name: Integration | |
uses: ./.github/workflows/integration.yml | |
with: | |
ref: ${{ github.sha }} |