Skip to content

ODH Release 2.10.0: Version Update #60

ODH Release 2.10.0: Version Update

ODH Release 2.10.0: Version Update #60

Workflow file for this run

name: Release ODH
on:
pull_request:
types:
- closed
jobs:
release-odh:
env:
GITHUB_TOKEN: ${{ github.token }}
if: github.event.pull_request.merged && startsWith(github.event.pull_request.title, 'ODH Release') && endsWith(github.event.pull_request.title, 'Version Update')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set env variables
uses: ./.github/actions/set-shared-env
with:
pat-token: ${{ secrets.PAT }}
- name: Create release branch
run: |
git checkout -b odh-${{ env.VERSION }}
- name: Create release pr
uses: ./.github/actions/create-release-pr
with:
pr-branch: "odh-release"
title: "ODH ${{ env.VERSION }} Release"
commit-message: "ODH ${{ env.VERSION }} Release"