Skip to content

Run Integration Tests #20

Run Integration Tests

Run Integration Tests #20

# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT
name: Run Integration Tests
on:
workflow_dispatch:
inputs:
build_run_id:
description: 'The run ID of the build-test-artifacts workflow'
type: number
required: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
check_run:
runs-on: ubuntu-latest
steps:
- run: gh run view ${{ inputs.build_run_id }} --repo $GITHUB_REPOSITORY --json conclusion
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
succeed:
runs-on: ubuntu-latest
steps:
- run: echo ${{ toJSON(github) }}