-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
E2E Test: Add failure if Operator image hasn't changed
- Loading branch information
1 parent
e76c2e0
commit 0931fce
Showing
2 changed files
with
40 additions
and
4 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Testing | ||
|
||
on: | ||
push: | ||
branches: | ||
- release-test-fix | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
jobs: | ||
e2e-test: | ||
uses: ./.github/workflows/appsignals-e2e-test.yml | ||
secrets: inherit | ||
# Two E2E tests should not run at the same time in the same EKS cluster | ||
concurrency: | ||
group: 'e2e-cw-agent-operator-test' | ||
cancel-in-progress: false | ||
with: | ||
test-cluster-name: 'e2e-cw-agent-operator-test' |