-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Vishnu Challa <vchalla@vchalla-thinkpadp1gen2.rmtusnc.csb>
- Loading branch information
Showing
771 changed files
with
25,425 additions
and
14,624 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Auto Merge dispatcher PR | ||
|
||
permissions: write-all | ||
|
||
on: | ||
pull_request: | ||
types: [opened, edited, reopened, synchronize] | ||
|
||
jobs: | ||
auto-merge: | ||
if: ${{ startsWith(github.event.pull_request.title, 'Automate prow job dispatcher at') && github.event.pull_request.user.login == 'openshift-bot' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Merge PR | ||
uses: actions/github-script@v6 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.MERGE_TOKEN }} | ||
with: | ||
script: | | ||
const prNumber = context.payload.pull_request.number; | ||
console.log(`Attempting to merge PR #${prNumber}...`); | ||
try { | ||
const mergeResponse = await github.rest.pulls.merge({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
pull_number: prNumber, | ||
merge_method: "squash" | ||
}); | ||
console.log('Merge successful:', mergeResponse.data); | ||
} catch (error) { | ||
console.error('Failed to merge PR:', error); | ||
throw error; | ||
} | ||
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
79 changes: 79 additions & 0 deletions
79
...ts/Apicurio-apicurio-registry-system-tests-main__service-registry-ocp4.19-lp-interop.yaml
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,79 @@ | ||
base_images: | ||
cli: | ||
name: "4.19" | ||
namespace: ocp | ||
tag: cli | ||
os: | ||
name: ubi | ||
namespace: ocp | ||
tag: "8" | ||
test-image: | ||
name: apicurio-ci-tools | ||
namespace: ci | ||
tag: interop | ||
releases: | ||
latest: | ||
candidate: | ||
product: ocp | ||
stream: nightly | ||
version: "4.19" | ||
resources: | ||
'*': | ||
requests: | ||
cpu: 100m | ||
memory: 200Mi | ||
tests: | ||
- as: service-registry-2-6-fips | ||
cron: 0 23 31 2 * | ||
steps: | ||
cluster_profile: aws-cspi-qe | ||
env: | ||
BASE_DOMAIN: cspilp.interop.ccitredhat.com | ||
FIPS_ENABLED: "true" | ||
FIREWATCH_CONFIG: | | ||
{ | ||
"failure_rules": | ||
[ | ||
{"step": "service-registry-run-tests", "failure_type": "pod_failure", "classification": "Test Execution", "group": {"name": "lp-tests", "priority": 1}, "jira_additional_labels": ["!default","interop-tests"]}, | ||
{"step": "service-registry-run-tests", "failure_type": "test_failure", "classification": "Test Failure", "jira_project": "APICURQE", "group": {"name": "lp-tests", "priority": 1}, "jira_additional_labels": ["!default","interop-tests"]} | ||
] | ||
} | ||
FIREWATCH_CONFIG_FILE_PATH: https://raw.githubusercontent.com/CSPI-QE/cspi-utils/main/firewatch-base-configs/aws-ipi/lp-interop.json | ||
FIREWATCH_DEFAULT_JIRA_ADDITIONAL_LABELS: '["4.19-lp","self-managed-lp","service-registry-lp","fips"]' | ||
FIREWATCH_DEFAULT_JIRA_ASSIGNEE: rkubis@redhat.com | ||
FIREWATCH_DEFAULT_JIRA_PROJECT: LPINTEROP | ||
USER_TAGS: | | ||
scenario service-registry | ||
test: | ||
- ref: service-registry-run-tests | ||
workflow: firewatch-ipi-aws | ||
timeout: 4h0m0s | ||
- as: service-registry-2-6 | ||
cron: 0 23 31 2 * | ||
steps: | ||
cluster_profile: aws-cspi-qe | ||
env: | ||
BASE_DOMAIN: cspilp.interop.ccitredhat.com | ||
FIREWATCH_CONFIG: | | ||
{ | ||
"failure_rules": | ||
[ | ||
{"step": "service-registry-run-tests", "failure_type": "pod_failure", "classification": "Test Execution", "group": {"name": "lp-tests", "priority": 1}, "jira_additional_labels": ["!default","interop-tests"]}, | ||
{"step": "service-registry-run-tests", "failure_type": "test_failure", "classification": "Test Failure", "jira_project": "APICURQE", "group": {"name": "lp-tests", "priority": 1}, "jira_additional_labels": ["!default","interop-tests"]} | ||
] | ||
} | ||
FIREWATCH_CONFIG_FILE_PATH: https://raw.githubusercontent.com/CSPI-QE/cspi-utils/main/firewatch-base-configs/aws-ipi/lp-interop.json | ||
FIREWATCH_DEFAULT_JIRA_ADDITIONAL_LABELS: '["4.19-lp","self-managed-lp","service-registry-lp"]' | ||
FIREWATCH_DEFAULT_JIRA_ASSIGNEE: rkubis@redhat.com | ||
FIREWATCH_DEFAULT_JIRA_PROJECT: LPINTEROP | ||
USER_TAGS: | | ||
scenario service-registry | ||
test: | ||
- ref: service-registry-run-tests | ||
workflow: firewatch-ipi-aws | ||
timeout: 4h0m0s | ||
zz_generated_metadata: | ||
branch: main | ||
org: Apicurio | ||
repo: apicurio-registry-system-tests | ||
variant: service-registry-ocp4.19-lp-interop |
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.