Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trigger manifest lock workflow from release Tag workflow #4874

Merged
merged 1 commit into from
Jul 22, 2024
Merged
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
10 changes: 10 additions & 0 deletions jenkins/release-tag/release-tag.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ pipeline {
}
}
}
stage('Update Manifest') {
steps {
echo 'Triggering manifest lock workflow'
build job: 'release-manifest-commit-lock', wait: true, parameters: [
string(name: 'RELEASE_VERSION', value: "${params.RELEASE_VERSION}"),
string(name: 'MANIFEST_LOCK_ACTION', value: "UPDATE_TO_TAGS")
]
echo 'Pull Request to lock manifest created successfully!'
}
}
}
post() {
always {
Expand Down
Loading