Skip to content

feat: Implement ProRLv2 recipe #2390

feat: Implement ProRLv2 recipe

feat: Implement ProRLv2 recipe #2390

# Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: "Automodel Integration and Submodule Checks"
on:
pull_request:
jobs:
submodule-check:
name: Check submodule fast-forward
uses: ./.github/workflows/_submodule_check.yml
with:
base_ref: ${{ github.base_ref }}
head_ref: ${{ github.head_ref }}
pr_number: ${{ github.event.number }}
head_sha: ${{ github.event.pull_request.head.sha }}
automodel-integration-check:
name: Check if changes in nemo-automodel are in sync with nemo-rl and vice versa
uses: ./.github/workflows/_automodel_integration_check.yml
with:
base_ref: ${{ github.base_ref }}
head_ref: ${{ github.head_ref }}
pr_number: ${{ github.event.number }}
head_sha: ${{ github.event.pull_request.head.sha }}