Skip to content

Commit

Permalink
Add test workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
jefchien committed Aug 2, 2024
1 parent a854c75 commit 357f664
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/application-signals-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name: Application Signals E2E Test
on:
workflow_run:
workflows: [ Build Test Artifacts ]
workflows: [ Test Workflow Run, Build Test Artifacts ]
types:
- completed

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:

on:
workflow_run:
workflows: [ Build Test Artifacts ]
workflows: [ Test Workflow Run, Build Test Artifacts ]
types:
- completed

Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/test-workflow-run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT

name: Test Workflow Run
on:
workflow_dispatch:

jobs:
fail-the-step:
runs-on: ubuntu-latest
steps:
- run: echo 'Fail this' && exit 1

0 comments on commit 357f664

Please sign in to comment.