Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ tests:
- chain: openshift-mcp-server-mcpchecker-eval-vertex
workflow: ipi-aws
- as: fast-forward-latest-release
cluster: app.ci
cron: 0 6 * * *
steps:
env:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
periodics:
- agent: kubernetes
cluster: build01
cluster: app.ci
cron: 0 6 * * *
decorate: true
decoration_config:
Expand All @@ -15,6 +15,7 @@ periodics:
- .ci-operator.yaml
- Dockerfile.ci
labels:
ci-operator.openshift.io/cluster: app.ci
ci.openshift.io/generator: prowgen
pj-rehearse.openshift.io/can-be-rehearsed: "true"
name: periodic-ci-openshift-openshift-mcp-server-main-fast-forward-latest-release
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,14 @@ git_wrapper() {
}

log "INFO Fast-forward settings"
log " REPO_OWNER = $REPO_OWNER"
log " REPO_NAME = $REPO_NAME"
log " SOURCE_BRANCH = $SOURCE_BRANCH"
log " DESTINATION_BRANCH = $DESTINATION_BRANCH"

repo_url="https://github.com/${REPO_OWNER}/${REPO_NAME}.git"
repo_url="https://github.com/openshift/openshift-mcp-server.git"

log "INFO Cloning $DESTINATION_BRANCH"
git_wrapper clone -b "$DESTINATION_BRANCH" "$repo_url"
cd "$REPO_NAME"
cd "openshift-mcp-server"

log "INFO Pulling $SOURCE_BRANCH into $DESTINATION_BRANCH (ff-only)"
git_wrapper pull --ff-only origin "$SOURCE_BRANCH"
Expand Down