forked from stackrox/stackrox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from stackrox/master
rebasing fork
- Loading branch information
Showing
1,074 changed files
with
255,480 additions
and
22,444 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
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
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
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
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,73 @@ | ||
|
||
name: emailsender-central-compatibility | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'central/notifiers/email/**' | ||
- 'central/notifiers/acscsemail/**' | ||
- '.github/workflows/emailsender-central-compatibility.yaml' | ||
|
||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
paths: | ||
- 'central/notifiers/email/**' | ||
- 'central/notifiers/acscsemail/**' | ||
- '.github/workflows/emailsender-central-compatibility.yaml' | ||
|
||
jobs: | ||
e2e-test-on-kind: | ||
timeout-minutes: 60 | ||
name: "Test on kind cluster" | ||
runs-on: ubuntu-latest | ||
if: ${{ !github.event.pull_request.head.repo.fork }} # do not run for PRs from forks | ||
permissions: | ||
id-token: write | ||
contents: read | ||
environment: development | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: n1hility/cancel-previous-runs@v3 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Set up Go 1.21 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
- name: Cache go module | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- name: Login to Quay.io | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: quay.io | ||
username: ${{ secrets.QUAY_RHACS_ENG_RO_USERNAME }} | ||
password: ${{ secrets.QUAY_RHACS_ENG_RO_PASSWORD }} | ||
- name: Checkout stackrox/acs-fleet-manager repository | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: stackrox/acs-fleet-manager | ||
path: acs-fleet-manager | ||
ref: main | ||
fetch-depth: 0 | ||
- name: Checkout stackrox/stackrox repository | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: stackrox/stackrox | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
path: stackrox | ||
fetch-depth: 0 | ||
- name: Create Kind cluster" | ||
uses: helm/kind-action@v1 | ||
with: | ||
cluster_name: kind | ||
- name: Run Test | ||
env: | ||
IMG_WAIT_TIMEOUT_SECONDS: 2100 | ||
run: acs-fleet-manager/scripts/ci/central_compatibility/entrypoint.sh |
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
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
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
Oops, something went wrong.