App Signals Enablement - E2E EKS Canary Testing #835
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
## This workflow aims to run the end-to-end tests in canary fashion to | |
## test the prod artifacts for App Signals enablement. | |
name: App Signals Enablement - E2E EKS Canary Testing | |
on: | |
schedule: | |
- cron: '0/10 * * * *' # run the workflow every 10 minutes | |
workflow_dispatch: # be able to run the workflow on demand | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
e2e-canary-test: | |
uses: ./.github/workflows/appsignals-e2e-eks-test.yml | |
secrets: inherit | |
with: | |
test-cluster-name: 'e2e-canary-test' | |
caller-workflow-name: 'appsignals-e2e-eks-canary-test' |